Commit 33a1b7e3 authored by Rais Aryaguna's avatar Rais Aryaguna

feat: Remove Bupot Tahunan A2 page and update navigation

parent 8a711c29
......@@ -102,7 +102,6 @@ export const navData: NavSectionProps['data'] = [
{ title: 'Bupot Bulanan', path: paths.pph21.bulanan },
{ title: 'Bupot Final/Tidak Final', path: paths.pph21.bupotFinal },
{ title: 'Bupot Tahunan A1', path: paths.pph21.tahuan },
{ title: 'Bupot Tahunan A2', path: paths.pph21.tahunanA2 },
{ title: 'Bupot Pasal 26', path: paths.pph21.bupot26 },
],
},
......
import { CONFIG } from 'src/global-config';
const metadata = { title: `E-Bupot 21/26- ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<p>Bupot Tahunan A2</p>
</>
);
}
......@@ -59,7 +59,6 @@ const AccountChangePasswordPage = lazy(
const OverviewBupotBulananPage = lazy(() => import('src/pages/pph21/bupotBulanan'));
const OverviewBupotFinalTdkFinalPage = lazy(() => import('src/pages/pph21/bupotFinaltidakFinal'));
const OverviewBupotA1Page = lazy(() => import('src/pages/pph21/bupoTahunanA1'));
const OverviewBupotA2Page = lazy(() => import('src/pages/pph21/bupotTahunanA2'));
const OverviewBupotPasal26Page = lazy(() => import('src/pages/pph21/bupotPasal26'));
// ----------------------------------------------------------------------
......@@ -138,10 +137,8 @@ export const dashboardRoutes: RouteObject[] = [
children: [
{ index: true, element: <OverviewBupotBulananPage /> },
{ path: 'bulanan', element: <OverviewBupotBulananPage /> },
{ path: 'bulanan/new', element: <OverviewBupotBulananPage /> },
{ path: 'bupot-final', element: <OverviewBupotFinalTdkFinalPage /> },
{ path: 'tahunan', element: <OverviewBupotA1Page /> },
{ path: 'tahunan-a2', element: <OverviewBupotA2Page /> },
{ path: 'bupot-26', element: <OverviewBupotPasal26Page /> },
],
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment