Update Tasks

This commit is contained in:
Possible
2024-06-26 16:09:40 +01:00
parent 744e0aa746
commit c9599309ea
+5 -5
View File
@@ -16,17 +16,17 @@ function renderRoutes(role) {
path="/admin/dashboard"
element={<AdminDashboardPage />}
></Route>
<Route
exact
path="/admin/receipt"
element={<AdminListReceipts />}
></Route>
</Routes>
);
break;
default:
return (
<Routes>
<Route
exact
path="/admin/receipt"
element={<AdminListReceipts />}
></Route>
<Route exact path="/admin/login" element={<AdminLoginPage />}></Route>
<Route path="*" exact element={<NotFoundPage />}></Route>