summaryrefslogtreecommitdiff
path: root/src/pages.gen.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages.gen.ts')
-rw-r--r--src/pages.gen.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pages.gen.ts b/src/pages.gen.ts
index 6695ceb..2d0d34e 100644
--- a/src/pages.gen.ts
+++ b/src/pages.gen.ts
@@ -18,6 +18,8 @@ import type { getConfig as File_Logout_getConfig } from './pages/logout';
// prettier-ignore
import type { getConfig as File_Db_getConfig } from './pages/db';
// prettier-ignore
+import type { getConfig as File_Study_getConfig } from './pages/study';
+// prettier-ignore
import type { getConfig as File_Form_getConfig } from './pages/form';
// prettier-ignore
import type { getConfig as File_Tones_getConfig } from './pages/tones';
@@ -40,6 +42,7 @@ type Page =
| ({ path: '/parse' } & GetConfigResponse<typeof File_Parse_getConfig>)
| ({ path: '/logout' } & GetConfigResponse<typeof File_Logout_getConfig>)
| ({ path: '/db' } & GetConfigResponse<typeof File_Db_getConfig>)
+| ({ path: '/study' } & GetConfigResponse<typeof File_Study_getConfig>)
| { path: '/test/client-modal'; render: 'dynamic' }
| { path: '/test/trigger-modal-button'; render: 'dynamic' }
| { path: '/test'; render: 'dynamic' }
@@ -48,9 +51,7 @@ type Page =
| ({ path: '/picker' } & GetConfigResponse<typeof File_Picker_getConfig>)
| { path: '/lessons'; render: 'dynamic' }
| ({ path: '/about' } & GetConfigResponse<typeof File_About_getConfig>)
-| { path: '/logintest/Form'; render: 'dynamic' }
| ({ path: '/logintest' } & GetConfigResponse<typeof File_LogintestIndex_getConfig>)
-| { path: '/logintest/ServerForm'; render: 'dynamic' }
| ({ path: '/' } & GetConfigResponse<typeof File_Index_getConfig>);
// prettier-ignore