1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-09 07:25:19 +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 // Providers and components only relevant to a logged-in user
const WithAuth = function ({ children }: PropsWithChildren) { const WithAuth = withAuthenticationRequired(function ({ children }: PropsWithChildren) {
return ( return (
<ModalManager> <ModalManager>
<UserAccountContextProvider> <UserAccountContextProvider>
@ -46,7 +46,7 @@ const WithAuth = function ({ children }: PropsWithChildren) {
</UserAccountContextProvider> </UserAccountContextProvider>
</ModalManager> </ModalManager>
) )
} })
export default function App({ export default function App({
Component: Page, Component: Page,