Skip to content

Commit

Permalink
fix: check your email page flickers (calcom#12969)
Browse files Browse the repository at this point in the history
* fixes#12966

* fixes#12966

* "fix-modification

* fix-mis-paste

* checks-fixes

* civilized-code-of-same-previous-approach

* civilized-changes-of-same-approach

* fix

* checks-fix

* fix

* fix

* checks-fix

* checksfix

* check fix

* undochanges-_-

---------

Co-authored-by: Udit Takkar <[email protected]>
  • Loading branch information
WongChoice and Udit-takkar authored Jan 2, 2024
1 parent 1c2fff5 commit ffefb34
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/web/pages/auth/verify-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function VerifyEmailPage() {
const { data } = useEmailVerifyCheck();
const { data: session } = useSession();
const router = useRouter();
const { t } = useLocale();
const { t, isLocaleReady } = useLocale();
const mutation = trpc.viewer.auth.resendVerifyEmail.useMutation();

useEffect(() => {
Expand All @@ -24,7 +24,9 @@ function VerifyEmailPage() {
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [data?.isVerified]);

if (!isLocaleReady) {
return null;
}
return (
<div className="h-[100vh] w-full ">
<div className="flex h-full w-full flex-col items-center justify-center">
Expand Down

0 comments on commit ffefb34

Please sign in to comment.