Skip to content

Commit b20b74d

Browse files
authored
fix (#1422)
1 parent 3ee2010 commit b20b74d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

frontend/app/src/router.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,17 @@ export const routes: RouteObject[] = [
235235
},
236236
),
237237
},
238+
{
239+
path: '/managed-workers/demo-template',
240+
lazy: async () =>
241+
import(
242+
'./pages/main/managed-workers/demo-template/index.tsx'
243+
).then((res) => {
244+
return {
245+
Component: res.default,
246+
};
247+
}),
248+
},
238249
{
239250
path: '/managed-workers/create',
240251
lazy: async () =>
@@ -509,17 +520,6 @@ export const routes: RouteObject[] = [
509520
},
510521
),
511522
},
512-
{
513-
path: '/managed-workers/demo-template',
514-
lazy: async () =>
515-
import(
516-
'./pages/main/managed-workers/demo-template/index.tsx'
517-
).then((res) => {
518-
return {
519-
Component: res.default,
520-
};
521-
}),
522-
},
523523
{
524524
path: '/v1/managed-workers/demo-template',
525525
lazy: async () =>

0 commit comments

Comments
 (0)