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,14 +1,13 @@
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 { SamplePage } from './sample/sample-page';
export const VatReturnPages = () => {
return (
<>
<SentryRoutes>
<Routes>
<Route path={ROUTE_NAMES.taxInvoice.sample} element={<SamplePage />} />
</SentryRoutes>
</Routes>
</>
);
};