diff --git a/src/components/wizard/BackendSelectionStep.tsx b/src/components/wizard/BackendSelectionStep.tsx index e835317..33883eb 100644 --- a/src/components/wizard/BackendSelectionStep.tsx +++ b/src/components/wizard/BackendSelectionStep.tsx @@ -7,6 +7,7 @@ import type { BackendType } from '../../store/types'; import { BACKEND_REGISTRY } from '../../schemas/registry'; import { BackendCard } from '../ui/BackendCard'; import { MD3_BTN_FILLED } from '../../styles/md3-buttons'; +import { TextFieldMD3 } from '../ui/TextFieldMD3'; const remoteNameSchema = z.object({ name: z @@ -54,13 +55,13 @@ export function BackendSelectionStep() {

Step 1: Select Backend

-
- - - {errors.name && ( -

{errors.name.message}

- )} -
+
{Object.entries(BACKEND_REGISTRY).map(([type, entry]) => (