Skip Finance Management module
This commit is contained in:
22
src/App.tsx
22
src/App.tsx
@@ -33,6 +33,7 @@ import Settings from "./pages/dashboard/Settings";
|
||||
import Invoices from "./pages/dashboard/Invoices";
|
||||
import InvoiceDetail from "./pages/dashboard/InvoiceDetail";
|
||||
import HotelManagement from "./pages/dashboard/HotelManagement";
|
||||
import RestaurantPOS from "./pages/dashboard/RestaurantPOS";
|
||||
import NotFound from "./pages/NotFound";
|
||||
|
||||
const queryClient = new QueryClient();
|
||||
@@ -240,13 +241,20 @@ const AppRouter = () => (
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
|
||||
<Route path="/dashboard/hotel-management" element={
|
||||
<ProtectedRoute>
|
||||
<DashboardLayout>
|
||||
<HotelManagement />
|
||||
</DashboardLayout>
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
<Route path="/dashboard/hotel-management" element={
|
||||
<ProtectedRoute>
|
||||
<DashboardLayout>
|
||||
<HotelManagement />
|
||||
</DashboardLayout>
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
<Route path="/dashboard/restaurant-pos" element={
|
||||
<ProtectedRoute>
|
||||
<DashboardLayout>
|
||||
<RestaurantPOS />
|
||||
</DashboardLayout>
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
|
||||
{/* Catch-all route */}
|
||||
<Route path="*" element={<NotFound />} />
|
||||
|
||||
Reference in New Issue
Block a user