Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
Remove useless assignment (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
isSerge authored Oct 3, 2022
1 parent 8833bdd commit 407ebdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export const useStore = defineStore('store', {

const syncState = await client.getSyncState();
this.setSyncState(syncState);
let isSyncing = await client.isSyncing();
let isSyncing;

do {
await new Promise((resolve) => setTimeout(resolve, 3000));
Expand Down

0 comments on commit 407ebdf

Please sign in to comment.