diff --git a/src/components/Poll/PollActions/PollResults/PollResults.tsx b/src/components/Poll/PollActions/PollResults/PollResults.tsx index 15ed3320a..dd6d5e718 100644 --- a/src/components/Poll/PollActions/PollResults/PollResults.tsx +++ b/src/components/Poll/PollActions/PollResults/PollResults.tsx @@ -14,7 +14,7 @@ type PollStateSelectorReturnValue = { }; const pollStateSelector = (nextValue: PollState): PollStateSelectorReturnValue => ({ name: nextValue.name, - options: nextValue.options, + options: [...nextValue.options], vote_counts_by_option: nextValue.vote_counts_by_option, });