From 23e56104989cddc70fba2496950fe7c5a1ffdbe7 Mon Sep 17 00:00:00 2001 From: addison Date: Thu, 16 Dec 2021 11:59:26 -0500 Subject: [PATCH] [bug(Account Switching)] Remove reset function from Account model --- src/models/account.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/models/account.ts b/src/models/account.ts index 8544fffd96..9bbbe19436 100644 --- a/src/models/account.ts +++ b/src/models/account.ts @@ -21,12 +21,4 @@ export class Account extends BaseAccount { this.sendType = init.sendType ?? new BrowserComponentState(); } - - reset() { - super.reset(); - this.groupings = new BrowserGroupingsComponentState(); - this.send = new BrowserSendComponentState(); - this.ciphers = new BrowserComponentState(); - this.sendType = new BrowserComponentState(); - } }