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:
@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user