Poll: convert vote to string

settings-alert
Alex Gleason 2022-06-21 11:25:20 -05:00
rodzic 572744a695
commit 55892e0a82
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -37,7 +37,7 @@ const Poll: React.FC<IPoll> = ({ id, status }): JSX.Element | null => {
ap_id: status,
}));
const handleVote = (selectedId: number) => dispatch(vote(id, [selectedId]));
const handleVote = (selectedId: number) => dispatch(vote(id, [String(selectedId)]));
const toggleOption = (value: number) => {
if (isLoggedIn) {