Update src/App.tsx

Co-authored-by: Robin <robin@robin.town>
This commit is contained in:
Timo
2024-02-22 15:11:02 +01:00
committed by GitHub
parent 4b6b813bb0
commit e9f6e21e26

View File

@@ -61,7 +61,7 @@ const BackgroundProvider: FC<SimpleProviderProps> = ({ children }) => {
};
const ThemeProvider: FC<SimpleProviderProps> = ({ children }) => {
useTheme();
return <>{children}</>;
return children;
};
interface AppProps {