This commit is contained in:
Desktop
2025-11-14 04:48:57 +05:00
parent 946b419fa4
commit e99a96aa2d
2 changed files with 11 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ const ReferenceIndustries = lazy(() => import("./pages/Reference/Industries"));
// Other Pages - Lazy loaded
const Schedules = lazy(() => import("./pages/Schedules"));
const AutomationDashboard = lazy(() => import("./pages/Automation/Dashboard"));
// Settings - Lazy loaded
const GeneralSettings = lazy(() => import("./pages/Settings/General"));
@@ -252,6 +253,11 @@ export default function App() {
} />
{/* Other Pages */}
<Route path="/automation" element={
<Suspense fallback={null}>
<AutomationDashboard />
</Suspense>
} />
<Route path="/schedules" element={
<Suspense fallback={null}>
<Schedules />