2
0

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

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,
});