From 12f84999e780e0678c9c27b8eb464d3f6ffae699 Mon Sep 17 00:00:00 2001 From: Benjamin POCHAT Date: Sun, 29 Sep 2024 22:18:23 +0200 Subject: [PATCH] fix scrollingbar problem --- frontend/app/src/App.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/app/src/App.js b/frontend/app/src/App.js index d4ab858..1cf838a 100644 --- a/frontend/app/src/App.js +++ b/frontend/app/src/App.js @@ -17,6 +17,8 @@ import SnackbarProvider from './domains/commons/components/SnackbarProvider.tsx' function App() { + document.body.style.overflow = null; + const themeFactory = new ThemeFactory() const keycloakClient = new Keycloak(window.location.origin + '/config/keycloak.json') @@ -26,14 +28,15 @@ function App() { silentCheckSsoRedirectUri: window.location.origin + '/silent-check-sso.html' } + return ( - - + +