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} /> <RouterProvider router={router} />
<Toasts /> <Toasts />
<TopButton />
</> </>
); );
}; };

View File

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

View File

@@ -40,11 +40,11 @@ main {
} }
header{ header{
height: calc(50px + env(safe-area-inset-top, 50px)); height: calc(50px + env(safe-area-inset-top));
padding-top: calc(env(safe-area-inset-top, 50px)); padding-top: calc(env(safe-area-inset-top));
} }
main { 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); padding-bottom: env(safe-area-inset-bottom);
} }
main.home-main{ main.home-main{