Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shan57blocks committed Nov 13, 2024
1 parent ed61933 commit 0594ad6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const useAuthErrorHandling = (
].includes(error.response?.data?.detail?.type)

const isWalletNotCreatedError = error === 'WalletNotCreatedException'
const isWalletNotSignInError = error === 'WalletNotSignInException'
const isWalletNotSignInError = error === 'WalletNotSignedInException'

return {
isUnauthorizedError,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export function PointsEarned({
)
setWalletOwnership(ownership)
if (!ownership) {
setAuthError('WalletNotSignInException')
setAuthError('WalletNotSignedInException')
}
}
}
Expand Down

0 comments on commit 0594ad6

Please sign in to comment.