cleanup codeigniter code

This commit is contained in:
root
2026-06-04 02:55:19 -04:00
parent 4dde38004f
commit 1af02dadd3
31 changed files with 824 additions and 756 deletions
+6 -6
View File
@@ -71,11 +71,11 @@ const AppHome = lazy(() => import('./pages/AppHome').then((m) => ({ default: m.A
const AdminLandingDashboardPage = lazy(() =>
import('./pages/landing/AdminLandingDashboardPage').then((m) => ({ default: m.AdminLandingDashboardPage })),
)
const CiSitemapPage = lazy(() =>
import('./pages/CiSitemapPage').then((m) => ({ default: m.CiSitemapPage })),
const ViewRouteSitemapPage = lazy(() =>
import('./pages/ViewRouteSitemapPage').then((m) => ({ default: m.ViewRouteSitemapPage })),
)
const CiPlaceholderPage = lazy(() =>
import('./pages/CiPlaceholderPage').then((m) => ({ default: m.CiPlaceholderPage })),
const ViewRoutePlaceholderPage = lazy(() =>
import('./pages/ViewRoutePlaceholderPage').then((m) => ({ default: m.ViewRoutePlaceholderPage })),
)
const NavBuilderPage = lazy(() =>
import('./pages/NavBuilderPage').then((m) => ({ default: m.NavBuilderPage })),
@@ -1426,8 +1426,8 @@ export default function App() {
</Route>
<Route element={<ManagementLayout />}>
<Route path="browse" element={<CiSitemapPage />} />
<Route path="*" element={<CiPlaceholderPage />} />
<Route path="browse" element={<ViewRouteSitemapPage />} />
<Route path="*" element={<ViewRoutePlaceholderPage />} />
</Route>
</Route>
</Route>