This commit is contained in:
focp212@naver.com
2025-10-15 10:02:44 +09:00
parent 1a80048f77
commit 66524b36bc
3 changed files with 3 additions and 6 deletions

View File

@@ -12,7 +12,6 @@ export const App = () => {
<>
<RouterProvider router={router} />
<Toasts />
<TopButton />
</>
);
};

View File

@@ -5,11 +5,9 @@ import { App } from './app';
import { initAxios } from '@/shared/configs/axios';
import { initSentry } from '@/shared/configs/sentry';
import { AppProvider } from './providers/app-provider';
import { useUserInfo } from '@/entities/user/lib/use-user-info';
// import appBridge from '@/shared/lib/appBridge';
const initApp = async () => {
//const { updateUserData } = useUserInfo();
initAxios();
initSentry();
// appBridge.sendMessage('login')

View File

@@ -40,11 +40,11 @@ main {
}
header{
height: calc(50px + env(safe-area-inset-top, 50px));
padding-top: calc(env(safe-area-inset-top, 50px));
height: calc(50px + env(safe-area-inset-top));
padding-top: calc(env(safe-area-inset-top));
}
main {
padding-top: calc(50px + env(safe-area-inset-top, 50px)) !important;
padding-top: calc(50px + env(safe-area-inset-top)) !important;
padding-bottom: env(safe-area-inset-bottom);
}
main.home-main{