diff --git a/packages/chakra-components/src/components/Election/Questions/Fields.tsx b/packages/chakra-components/src/components/Election/Questions/Fields.tsx index 795b44c..ec7a888 100644 --- a/packages/chakra-components/src/components/Election/Questions/Fields.tsx +++ b/packages/chakra-components/src/components/Election/Questions/Fields.tsx @@ -97,6 +97,7 @@ export const MultiChoice = ({ index, question }: QuestionProps) => { if (v && v.length >= minChoices && v.length <= election.voteType.maxCount) { return true } + if (minChoices === 1) return localize('validation.at_least_one') return localize('validation.min_choices_count', { count: minChoices }) }