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> </script>
</head> </head>
<body class="cpd-theme-dark"> <body>
<div id="root"></div> <div id="root"></div>
</body> </body>
</html> </html>

View File

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