Revert the change of removing index path (#438)

This commit is contained in:
Salih Altun
2024-06-06 18:54:50 +03:00
committed by GitHub
parent a897a21a3f
commit 1d3a7a0348

View File

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