Fix voting on polls (#33266)

This commit is contained in:
Renaud Chaput 2024-12-11 11:32:03 +01:00 committed by GitHub
parent a4560d9278
commit da279df8ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,5 +6,5 @@ export const apiGetPoll = (pollId: string) =>
export const apiPollVote = (pollId: string, choices: string[]) =>
apiRequestPost<ApiPollJSON>(`/v1/polls/${pollId}/votes`, {
data: { choices },
choices,
});