We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 345c678 commit d70bf0fCopy full SHA for d70bf0f
extension/js/common/settings.ts
@@ -88,6 +88,7 @@ export class Settings {
88
if (!acctEmails.includes(acctEmail)) {
89
throw new Error(`"${acctEmail}" is not a known account_email in "${JSON.stringify(acctEmails)}"`);
90
}
91
+ await GlobalStore.acctEmailsRemove(acctEmail);
92
const storageIndexesToRemove: AccountIndex[] = [];
93
const filter = AbstractStore.singleScopeRawIndex(acctEmail, '');
94
if (!filter) {
@@ -190,7 +191,6 @@ export class Settings {
190
191
192
193
await Settings.acctStorageReset(oldAcctEmail);
- await GlobalStore.acctEmailsRemove(oldAcctEmail);
194
195
196
public static async renderPrvCompatFixUiAndWaitTilSubmittedByUser(
0 commit comments