From fa887f7b1aeda94e74e5c5e398dbff048b36c28b Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:53:03 -0600 Subject: [PATCH] Polls: allow multiple votes by default Co-authored-by: yash-signal --- ts/components/PollCreateModal.dom.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/PollCreateModal.dom.tsx b/ts/components/PollCreateModal.dom.tsx index 4ef1be04a6..f52c5bf90a 100644 --- a/ts/components/PollCreateModal.dom.tsx +++ b/ts/components/PollCreateModal.dom.tsx @@ -47,7 +47,7 @@ export function PollCreateModal({ { id: generateUuid(), value: '' }, { id: generateUuid(), value: '' }, ]); - const [allowMultiple, setAllowMultiple] = useState(false); + const [allowMultiple, setAllowMultiple] = useState(true); const [emojiPickerOpenForOption, setEmojiPickerOpenForOption] = useState< string | null >(null);