diff --git a/web/src/layout/VerificationLayout.tsx b/web/src/layout/VerificationLayout.tsx index 8403090..1991009 100644 --- a/web/src/layout/VerificationLayout.tsx +++ b/web/src/layout/VerificationLayout.tsx @@ -54,7 +54,11 @@ const VerificationLayout: FC = () => { } }, [navigate, redirect, step]); - if (step === "email" && !location.pathname.startsWith("/verify/email")) { + if ( + step === "email" && + !location.pathname.startsWith("/verify/email") && + location.pathname.replace(/\/$/i, "") !== "/verify" + ) { return ; }