Fix email verification (#11660)

Email verification modal had been broken and looked bad

I also added stories to make it more evident if this happens again
This commit is contained in:
Félix Malfait
2025-04-20 14:18:43 +02:00
committed by GitHub
parent 24873d0c1d
commit aa2f3438fa
4 changed files with 134 additions and 2 deletions

View File

@ -120,7 +120,11 @@ export const SignInUp = () => {
]);
if (signInUpStep === SignInUpStep.EmailVerification) {
return <EmailVerificationSent email={searchParams.get('email')} />;
return (
<Modal.Content isVerticalCentered isHorizontalCentered>
<EmailVerificationSent email={searchParams.get('email')} />
</Modal.Content>
);
}
return (