diff --git a/admin-lehrer/components/grid-editor/GridToolbar.tsx b/admin-lehrer/components/grid-editor/GridToolbar.tsx index cddbc53..2fde08e 100644 --- a/admin-lehrer/components/grid-editor/GridToolbar.tsx +++ b/admin-lehrer/components/grid-editor/GridToolbar.tsx @@ -22,7 +22,6 @@ interface GridToolbarProps { const IPA_LABELS: Record = { auto: 'IPA: Auto', en: 'IPA: nur EN', - de: 'IPA: nur DE', all: 'IPA: Alle', none: 'IPA: Aus', } diff --git a/admin-lehrer/components/grid-editor/useGridEditor.ts b/admin-lehrer/components/grid-editor/useGridEditor.ts index 9936ddd..d9eeff0 100644 --- a/admin-lehrer/components/grid-editor/useGridEditor.ts +++ b/admin-lehrer/components/grid-editor/useGridEditor.ts @@ -14,7 +14,7 @@ export interface GridEditorState { selectedZone: number | null } -export type IpaMode = 'auto' | 'all' | 'de' | 'en' | 'none' +export type IpaMode = 'auto' | 'all' | 'en' | 'none' export type SyllableMode = 'auto' | 'all' | 'de' | 'en' | 'none' export function useGridEditor(sessionId: string | null) { diff --git a/klausur-service/backend/grid_editor_api.py b/klausur-service/backend/grid_editor_api.py index 0e58d74..5346101 100644 --- a/klausur-service/backend/grid_editor_api.py +++ b/klausur-service/backend/grid_editor_api.py @@ -1593,7 +1593,7 @@ async def _build_grid_core( @router.post("/sessions/{session_id}/build-grid") async def build_grid( session_id: str, - ipa_mode: str = Query("auto", pattern="^(auto|all|de|en|none)$"), + ipa_mode: str = Query("auto", pattern="^(auto|all|en|none)$"), syllable_mode: str = Query("auto", pattern="^(auto|all|de|en|none)$"), ): """Build a structured, zone-aware grid from existing Kombi word results.