Merge branch 'captcha-hotfix' into 'main'

Hotfix captcha not showing after signup

See merge request soapbox-pub/soapbox!3155
This commit is contained in:
Alex Gleason 2024-10-14 00:32:07 +00:00
commit 16b05a9886
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 Promise.all(events.map((event) => relay?.event(event)));
await dispatch(logInNostr(pubkey));
onClose();
await dispatch(logInNostr(pubkey));
if (isMobile) {
dispatch(closeSidebar());
}