remove sentry

This commit is contained in:
focp212@naver.com
2025-11-10 11:08:26 +09:00
parent 24d0b38e5e
commit 916a3b4344
18 changed files with 36 additions and 369 deletions

View File

@@ -1,5 +1,4 @@
import { Route } from 'react-router-dom';
import { SentryRoutes } from '@/shared/configs/sentry';
import { Route, Routes } from 'react-router-dom';
import { ROUTE_NAMES } from '@/shared/constants/route-names';
import { NoticeListPage } from './notice/list-page';
import { FaqListPage } from './faq/list-page';
@@ -9,7 +8,7 @@ import { QnaRegisterPage } from './qna/register-page';
export const SupportPages = () => {
return (
<>
<SentryRoutes>
<Routes>
<Route path={ROUTE_NAMES.support.notice.base}>
<Route path={ROUTE_NAMES.support.notice.list} element={<NoticeListPage />} />
<Route path={ROUTE_NAMES.support.notice.list + '/:seq'} element={<NoticeListPage />} />
@@ -22,7 +21,7 @@ export const SupportPages = () => {
<Route path={ROUTE_NAMES.support.qna.list + '/:seq'} element={<QnaListPage />} />
<Route path={ROUTE_NAMES.support.qna.register} element={<QnaRegisterPage />} />
</Route>
</SentryRoutes>
</Routes>
</>
);
};