Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
Remove unnecessary theme on site
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvicenti committed Oct 16, 2023
1 parent b51af83 commit 061e8a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/apps/site/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function App({Component, pageProps}: AppProps<EveryPageProps>) {
</Head>
<Hydrate state={pageProps.trpcState}>
<ThemeProvider>
<Theme name="mint">{contents}</Theme>
{contents}
<Toaster position="bottom-center" />
</ThemeProvider>
</Hydrate>
Expand All @@ -110,7 +110,7 @@ function ThemeProvider({children}: {children: React.ReactNode}) {
disableRootThemeClass
disableInjectCSS
>
<Theme name="mint">{children}</Theme>
{children}
</TamaguiProvider>
</NextThemeProvider>
)
Expand Down

0 comments on commit 061e8a9

Please sign in to comment.