From 3b0dd2ebeb0b0e82832e3b2f02f7b9f563e4c2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8E=86=E5=86=B0=E9=83=81-hermes=E7=89=88?= Date: Fri, 8 May 2026 12:20:32 +0800 Subject: [PATCH] feat: add profile feedback route stage --- src/components/platform-entry/platformEntryTypes.ts | 1 + src/routing/appPageRoutes.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/platform-entry/platformEntryTypes.ts b/src/components/platform-entry/platformEntryTypes.ts index 19821753..c0321217 100644 --- a/src/components/platform-entry/platformEntryTypes.ts +++ b/src/components/platform-entry/platformEntryTypes.ts @@ -15,6 +15,7 @@ export type CustomWorldRuntimeLaunchOptions = { export type SelectionStage = | 'platform' + | 'profile-feedback' | 'work-detail' | 'detail' | 'agent-workspace' diff --git a/src/routing/appPageRoutes.ts b/src/routing/appPageRoutes.ts index 31cc060c..26f8257c 100644 --- a/src/routing/appPageRoutes.ts +++ b/src/routing/appPageRoutes.ts @@ -6,6 +6,7 @@ export const PUBLIC_WORK_QUERY_PARAM = 'work'; const STAGE_ROUTE_ENTRIES = [ ['platform', '/'], + ['profile-feedback', '/profile/feedback'], ['work-detail', '/works/detail'], ['detail', '/worlds/detail'], ['agent-workspace', '/creation/rpg/agent'],