Skip to content

Commit

Permalink
return undefined for selectSelectedInternalAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
owencraston committed Jan 20, 2025
1 parent 2f815ba commit fde5b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/selectors/accountsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const selectSelectedInternalAccount = createDeepEqualSelector(
`selectSelectedInternalAccount: Account with ID ${accountId} not found.`,
);
captureException(err);
throw err;
return undefined;
}
return account;
},
Expand Down

0 comments on commit fde5b0d

Please sign in to comment.