diff --git a/jslib b/jslib index 64a6015a67..6920cf77b9 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 64a6015a67a8110cd8a4ef897e1338c71c4b6b49 +Subproject commit 6920cf77b9373ed25f882ce68f17dde582e0a5be diff --git a/src/popup/vault/current-tab.component.ts b/src/popup/vault/current-tab.component.ts index 1260b3c2c5..070f3c1856 100644 --- a/src/popup/vault/current-tab.component.ts +++ b/src/popup/vault/current-tab.component.ts @@ -87,11 +87,6 @@ export class CurrentTabComponent implements OnInit, OnDestroy { }); } break; - case 'syncCompleted': - if (message.successfully) { - await this.load(); - } - break; default: break; } diff --git a/src/popup/vault/groupings.component.ts b/src/popup/vault/groupings.component.ts index 23b13441b0..a634f98efe 100644 --- a/src/popup/vault/groupings.component.ts +++ b/src/popup/vault/groupings.component.ts @@ -97,11 +97,9 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit this.ngZone.run(async () => { switch (message.command) { case 'syncCompleted': - if (message.successfully) { - window.setTimeout(() => { - this.load(); - }, 500); - } + window.setTimeout(() => { + this.load(); + }, 500); break; default: break;