Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed Dec 8, 2023
1 parent 688a75e commit 1acd342
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/agent/src/sync-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,12 +303,12 @@ export class SyncManagerLevel implements SyncManager {
clearInterval(this._syncIntervalId);
}

await this.push();
await this.pull();
await this.push();
await this.pull();

// then we start sync again
this._syncIntervalId = setInterval(syncInterval, interval);
}
// then we start sync again
this._syncIntervalId = setInterval(syncInterval, interval);
};


return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 1acd342

Please sign in to comment.