Update auth-test.tsx

This commit is contained in:
Steve Ruiz 2021-06-20 08:34:55 +01:00
parent 2c61afd628
commit 2a96a587e2

View file

@ -2,15 +2,7 @@ import Head from 'next/head'
import { signIn, signOut, getSession, useSession } from 'next-auth/client'
import { GetServerSidePropsContext } from 'next'
export default function Home({
ssrSession,
isOwner,
isSponsor,
}: {
isOwner: boolean
isSponsor: boolean
ssrSession: any
}) {
export default function Home() {
const [session, loading] = useSession()
return (
<>