diff --git a/apps/web/src/routes/index.tsx b/apps/web/src/routes/index.tsx index b12f419..c176a2c 100755 --- a/apps/web/src/routes/index.tsx +++ b/apps/web/src/routes/index.tsx @@ -24,6 +24,7 @@ import MyLearningPage from "../app/main/my-learning/page"; import MyDutyPage from "../app/main/my-duty/page"; import MyPathPage from "../app/main/my-path/page"; import SearchPage from "../app/main/search/page"; +import MyDutyPathPage from "../app/main/my-duty-path/page"; interface CustomIndexRouteObject extends IndexRouteObject { name?: string; breadcrumb?: string; @@ -70,9 +71,11 @@ export const routes: CustomRouteObject[] = [ }, { path: "editor/:id?", - element: - - , + element: ( + + + + ), }, ], }, @@ -92,7 +95,7 @@ export const routes: CustomRouteObject[] = [ path: "my-duty-path", element: ( - + ), },