diff --git a/apps/scandic-web/components/TempDesignSystem/Form/RadioCard/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/RadioCard/index.tsx index 82b345c9f..e7377122f 100644 --- a/apps/scandic-web/components/TempDesignSystem/Form/RadioCard/index.tsx +++ b/apps/scandic-web/components/TempDesignSystem/Form/RadioCard/index.tsx @@ -35,10 +35,19 @@ export default function RadioCard({ } } + function onKeyDown(event: React.KeyboardEvent) { + if (disabled) return + + if (event.key === "Enter") { + setValue(name, value) + } + } + return (