From 9a07689dfeb736341b4f1b378e0ec758ea9cd0ff Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sat, 6 Jul 2024 02:33:06 -0400 Subject: feat: Add NFC tag writing functionality to ChoreCard component, Add Email to sign up --- src/contexts/RouterContext.jsx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/contexts') diff --git a/src/contexts/RouterContext.jsx b/src/contexts/RouterContext.jsx index 6077092..02df35f 100644 --- a/src/contexts/RouterContext.jsx +++ b/src/contexts/RouterContext.jsx @@ -8,6 +8,7 @@ import ForgotPasswordView from '../views/Authorization/ForgotPasswordView' import LoginView from '../views/Authorization/LoginView' import SignupView from '../views/Authorization/Signup' import UpdatePasswordView from '../views/Authorization/UpdatePasswordView' +import ChoreView from '../views/ChoreEdit/ChoreView' import MyChores from '../views/Chores/MyChores' import JoinCircleView from '../views/Circles/JoinCircle' import ChoreHistory from '../views/History/ChoreHistory' @@ -41,6 +42,10 @@ const Router = createBrowserRouter([ path: '/chores/:choreId/edit', element: , }, + { + path: '/chores/:choreId', + element: , + }, { path: '/chores/create', element: , -- cgit