From fd6e4880d21032010d1c5b156eb5ccfc3c983e74 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 21 Sep 2025 13:04:30 -0400 Subject: [PATCH] refactor: remove unused safe area utility and simplify layout structure --- src/App.jsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 4d6f1de..9ea6d6e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -11,7 +11,6 @@ import { AuthenticationProvider } from './service/AuthenticationService' import { useNotification } from './service/NotificationProvider' import { apiManager } from './utils/TokenManager' -import { getSafeBottomPadding } from './utils/SafeAreaUtils' import NetworkBanner from './views/components/NetworkBanner' const add = className => { @@ -89,7 +88,7 @@ const AppContent = () => { }, [needRefresh, showNotification, updateServiceWorker, setNeedRefresh]) return ( -
+
@@ -133,13 +132,13 @@ function App() { }, []) return ( -
+ <> -
+ ) }