[bug(Account Switching)] Remove reset function from Account model

This commit is contained in:
addison 2021-12-16 11:59:26 -05:00
parent c00f343123
commit 23e5610498
1 changed files with 0 additions and 8 deletions

View File

@ -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();
}
}