remove sentry
This commit is contained in:
@@ -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>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user