From 96e77524962914025b8fad15940e71d34f9f4666 Mon Sep 17 00:00:00 2001 From: lepitaaar Date: Mon, 16 Feb 2026 18:09:31 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20globalstyle=20=EC=9C=84=EC=B9=98=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index bf29ada12..b2c274907 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -35,11 +35,12 @@ const AdminRoutes = lazy(() => import('@/pages/AdminPage/AdminRoutes')); const App = () => { return ( + <> + - @@ -80,6 +81,7 @@ const App = () => { + ); }; From 36ceb19bf0d2a3a96442cd7129aabc277fc53595 Mon Sep 17 00:00:00 2001 From: lepitaaar Date: Mon, 16 Feb 2026 18:20:04 +0900 Subject: [PATCH 2/2] =?UTF-8?q?style:=20ci=20=EC=8A=A4=ED=83=80=EC=9D=BC?= =?UTF-8?q?=EB=A7=81=20=EC=9D=BC=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 96 +++++++++++++++++++++++--------------------- 1 file changed, 51 insertions(+), 45 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index b2c274907..c706e136e 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -36,51 +36,57 @@ const AdminRoutes = lazy(() => import('@/pages/AdminPage/AdminRoutes')); const App = () => { return ( <> - - - - - - - - - } /> - {/*기존 웹 & 안드로이드 url (android: v1.1.0)*/} - } /> - {/*웹 유저에게 신규 상세페이지 보유주기 위한 임시 url*/} - } /> - {/*새로 빌드해서 배포할 앱 주소 url*/} - } - /> - } /> - } /> - - - - - - } - /> - } - /> - } /> - {/* 개발 환경에서만 사용 가능한 에러 테스트 페이지 */} - {import.meta.env.DEV && ( - } /> - )} - } /> - - - - - + + + + + + + + + } /> + {/*기존 웹 & 안드로이드 url (android: v1.1.0)*/} + } + /> + {/*웹 유저에게 신규 상세페이지 보유주기 위한 임시 url*/} + } + /> + {/*새로 빌드해서 배포할 앱 주소 url*/} + } + /> + } /> + } /> + + + + + + } + /> + } + /> + } /> + {/* 개발 환경에서만 사용 가능한 에러 테스트 페이지 */} + {import.meta.env.DEV && ( + } /> + )} + } /> + + + + + ); };