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 { InfoPage } from './info/info-page';
import { NotificationDataPage } from './notification-data/notification-data-page';
@@ -7,10 +6,10 @@ import { NotificationDataPage } from './notification-data/notification-data-page
export const PaymentPages = () => {
return (
<>
<SentryRoutes>
<Routes>
<Route path={ROUTE_NAMES.payment.info} element={<InfoPage />} />
<Route path={ROUTE_NAMES.payment.notificationData} element={<NotificationDataPage />} />
</SentryRoutes>
</Routes>
</>
);
};