Fix tiny bug in auth context code

This commit is contained in:
Marshall Polaris 2022-08-12 13:45:38 -07:00
parent 3cb28cdecb
commit 79be0c555b

View File

@ -79,7 +79,7 @@ function MyApp({ Component, pageProps }: AppProps) {
content="width=device-width, initial-scale=1, maximum-scale=1" content="width=device-width, initial-scale=1, maximum-scale=1"
/> />
</Head> </Head>
<AuthProvider serverUser={pageProps.authUser}> <AuthProvider serverUser={pageProps.auth}>
<QueryClientProvider client={queryClient}> <QueryClientProvider client={queryClient}>
<Welcome {...pageProps} /> <Welcome {...pageProps} />
<Component {...pageProps} /> <Component {...pageProps} />