Hotfix captcha not showing after signup

This commit is contained in:
Alex Gleason 2024-10-13 19:16:38 -05:00
parent a31234e8a1
commit bbc4d7026b
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 2 additions and 2 deletions

View File

@ -63,10 +63,10 @@ const KeygenStep: React.FC<IKeygenStep> = ({ onClose }) => {
await relay?.event(kind0); await relay?.event(kind0);
await Promise.all(events.map((event) => relay?.event(event))); await Promise.all(events.map((event) => relay?.event(event)));
await dispatch(logInNostr(pubkey));
onClose(); onClose();
await dispatch(logInNostr(pubkey));
if (isMobile) { if (isMobile) {
dispatch(closeSidebar()); dispatch(closeSidebar());
} }