diff --git a/src/pages/(auth)/EmailVerification.tsx b/src/pages/(auth)/EmailVerification.tsx
index 79213ab3..930c0c73 100644
--- a/src/pages/(auth)/EmailVerification.tsx
+++ b/src/pages/(auth)/EmailVerification.tsx
@@ -30,7 +30,6 @@ export default function EmailVerification({user, isLoading, setIsLoading}: Props
return (
<>
-
Please confirm your account!
diff --git a/src/pages/action.tsx b/src/pages/action.tsx
index 0d568a24..1a1046c7 100644
--- a/src/pages/action.tsx
+++ b/src/pages/action.tsx
@@ -52,7 +52,7 @@ export default function Reset({code, mode, apiKey, continueUrl}: {code: string;
if (response.data.ok) {
toast.success("Your account has been verified!", {toastId: "verify-successful"});
setTimeout(() => {
- router.push("/");
+ router.reload();
}, 1000);
return;
}