[bug(Account Switching)] Null check for send groupings

This commit is contained in:
addison 2021-12-16 12:01:02 -05:00
parent 059d9a4e9d
commit 516dd12d78
1 changed files with 1 additions and 1 deletions

View File

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