Skip to content

Commit

Permalink
Fix wallet matches check (#8360)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored May 6, 2024
1 parent 757055a commit 7108530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/common/store/account/sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export function* fetchLocalAccountAsync() {
const currentUserExists = yield call([localStorage, 'getCurrentUserExists'])

const walletMatches =
wallet.toLowerCase() === cachedAccountUser?.wallet.toLowerCase()
wallet?.toLowerCase() === cachedAccountUser?.wallet?.toLowerCase()

if (
cachedAccount &&
Expand Down

0 comments on commit 7108530

Please sign in to comment.