diff --git a/src/features/compose/components/polls/poll-form.tsx b/src/features/compose/components/polls/poll-form.tsx index 98313325e..112c8e1db 100644 --- a/src/features/compose/components/polls/poll-form.tsx +++ b/src/features/compose/components/polls/poll-form.tsx @@ -61,7 +61,7 @@ const Option: React.FC = ({ const handleOptionTitleChange = (event: React.ChangeEvent) => onChange(index, event.target.value); const handleOptionRemove = () => { - if (numOptions > 2) { + if (numOptions > 1) { onRemove(index); } else { onRemovePoll(); @@ -100,7 +100,7 @@ const Option: React.FC = ({ /> - {index > 1 && ( + {index > 0 && (