This commit is contained in:
zomars 2023-11-22 12:52:33 -07:00
parent e879ae9aab
commit 0667f3514f
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import { signOut, useSession } from "next-auth/react";
import { useRouter } from "next/navigation";
import { useEffect, useState } from "react";
import { setCsrfToken } from "@calcom/features/auth/lib/set-csrf-token";
import { WEBSITE_URL } from "@calcom/lib/constants";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { Button } from "@calcom/ui";

View File

@ -2,6 +2,7 @@ import type { GetServerSidePropsContext } from "next";
import { getProviders, signIn, getCsrfToken } from "next-auth/react";
import { getServerSession } from "@calcom/features/auth/lib/getServerSession";
import { setCsrfToken } from "@calcom/features/auth/lib/set-csrf-token";
import { Button } from "@calcom/ui";
import PageWrapper from "@components/PageWrapper";