We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234eafc commit 88590f1Copy full SHA for 88590f1
src/components/Poll/PollActions/PollResults/PollResults.tsx
@@ -14,7 +14,7 @@ type PollStateSelectorReturnValue = {
14
};
15
const pollStateSelector = (nextValue: PollState): PollStateSelectorReturnValue => ({
16
name: nextValue.name,
17
- options: nextValue.options,
+ options: [...nextValue.options],
18
vote_counts_by_option: nextValue.vote_counts_by_option,
19
});
20
0 commit comments