less flickers

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K
2024-02-26 13:21:58 +01:00
parent 2b35962c19
commit 866a394b80
2 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@
</script>
</head>
<body class="cpd-theme-dark">
<body>
<div id="root"></div>
</body>
</html>

View File

@@ -82,8 +82,8 @@ export const App: FC<AppProps> = ({ history }) => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
<Router history={history}>
<BackgroundProvider>
<ThemeProvider>
<ThemeProvider>
<BackgroundProvider>
<TooltipProvider>
{loaded ? (
<Suspense fallback={null}>
@@ -115,8 +115,8 @@ export const App: FC<AppProps> = ({ history }) => {
<LoadingView />
)}
</TooltipProvider>
</ThemeProvider>
</BackgroundProvider>
</BackgroundProvider>
</ThemeProvider>
</Router>
);
};