Skip to content

Commit

Permalink
Add missing await from onboarding flow (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorkirov authored Oct 30, 2024
1 parent 69fb6ac commit 59de698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/guards/onboarding/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function OnboardingGuard({ children }: WalletExistsGuardProps): React.ReactEleme
return;
}

unlockVault('');
await unlockVault('');
setIsWalletInitialized(false);
} catch (e) {
// seed exists and unlocking with empty password failed
Expand Down

0 comments on commit 59de698

Please sign in to comment.