1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-08 23:15:24 +02:00

reverted _app.tsx

This commit is contained in:
Tamir 2024-01-10 22:19:28 -08:00
parent bbe6ec6b75
commit 54e01b23f4

View file

@ -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 (
<ModalManager>
<UserAccountContextProvider>
@ -46,7 +46,7 @@ const WithAuth = function ({ children }: PropsWithChildren) {
</UserAccountContextProvider>
</ModalManager>
)
}
})
export default function App({
Component: Page,