From 54e01b23f45559bb33913f549f698b0c43b8d5b6 Mon Sep 17 00:00:00 2001 From: Tamir Date: Wed, 10 Jan 2024 22:19:28 -0800 Subject: [PATCH] reverted _app.tsx --- apps/client/pages/_app.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/pages/_app.tsx b/apps/client/pages/_app.tsx index 785b254f..4fde4633 100644 --- a/apps/client/pages/_app.tsx +++ b/apps/client/pages/_app.tsx @@ -33,7 +33,7 @@ Sentry.init({ }) // Providers and components only relevant to a logged-in user -const WithAuth = function ({ children }: PropsWithChildren) { +const WithAuth = withAuthenticationRequired(function ({ children }: PropsWithChildren) { return ( @@ -46,7 +46,7 @@ const WithAuth = function ({ children }: PropsWithChildren) { ) -} +}) export default function App({ Component: Page,