Fix: Improve table layout functionality
This commit is contained in:
@@ -34,6 +34,7 @@ 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 Personalization from "./pages/dashboard/Personalization";
|
||||
import NotFound from "./pages/NotFound";
|
||||
|
||||
const queryClient = new QueryClient();
|
||||
@@ -255,6 +256,13 @@ const AppRouter = () => (
|
||||
</DashboardLayout>
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
<Route path="/dashboard/personalization" element={
|
||||
<ProtectedRoute>
|
||||
<DashboardLayout>
|
||||
<Personalization />
|
||||
</DashboardLayout>
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
|
||||
{/* Catch-all route */}
|
||||
<Route path="*" element={<NotFound />} />
|
||||
|
||||
Reference in New Issue
Block a user