Fix router not going back to tasks page from task details (#437)

This commit is contained in:
Salih Altun
2024-06-06 18:28:37 +03:00
committed by GitHub
parent c43fd796ed
commit a897a21a3f
2 changed files with 4 additions and 8 deletions

View File

@@ -34,10 +34,6 @@ const router = createBrowserRouter([
path: ":taskId",
element: <TaskDetails />,
children: [
{
index: true,
element: <Navigate to="actions" />,
},
{
path: "actions",
element: <TaskActions />,