Skip to content

Commit

Permalink
🐛 Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mhetreayush committed Jun 7, 2024
1 parent 7c6bb98 commit e26811d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions js/ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,7 @@ function App() {
let redirectTimeout: NodeJS.Timeout;
const onVerifyAddressSuccess = () => {
// Start countdown for redirect
if (
!localSession?.message ||
!localSession?.raw ||
!localSession?.signature
)
return;
if (!localSession?.message || !localSession?.raw) return;
startCountdown();
setIsVerifyingAddress(false);

Expand Down

0 comments on commit e26811d

Please sign in to comment.