From a7b33c48b305e38f1b8b20003154225eaaec182b Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Mon, 1 Sep 2025 23:58:14 -0400 Subject: [PATCH] fix: Update navigation path after saving chore to remove trailing slash --- src/views/ChoreEdit/ChoreEdit.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ChoreEdit/ChoreEdit.jsx b/src/views/ChoreEdit/ChoreEdit.jsx index afb28bf..20988f2 100644 --- a/src/views/ChoreEdit/ChoreEdit.jsx +++ b/src/views/ChoreEdit/ChoreEdit.jsx @@ -252,7 +252,7 @@ const ChoreEdit = () => { title: 'Chore Saved', message: 'Your task has been saved successfully!', }) - Navigate('/chores/') + Navigate('/chores') }) .catch(error => { console.error('Failed to save chore:', error)