From 516dd12d78d4e478abe480e5a487079de4d6540d Mon Sep 17 00:00:00 2001 From: addison Date: Thu, 16 Dec 2021 12:01:02 -0500 Subject: [PATCH] [bug(Account Switching)] Null check for send groupings --- src/popup/send/send-groupings.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/send/send-groupings.component.ts b/src/popup/send/send-groupings.component.ts index 9123e882fd..55e6afc810 100644 --- a/src/popup/send/send-groupings.component.ts +++ b/src/popup/send/send-groupings.component.ts @@ -68,7 +68,7 @@ export class SendGroupingsComponent extends BaseSendComponent { await super.ngOnInit(); // Handle State Restore if necessary const restoredScopeState = await this.restoreState(); - if (this.state.searchText != null) { + if (this.state?.searchText != null) { this.searchText = this.state.searchText; }