diff --git a/app/components/simple-voting/PollsList.js b/app/components/simple-voting/PollsList.js index b15c7f2..3f3cec2 100644 --- a/app/components/simple-voting/PollsList.js +++ b/app/components/simple-voting/PollsList.js @@ -127,7 +127,7 @@ const PollsList = () => ( {rawPolls .map((poll, i) => ({ ...poll, idPoll: i }) ) .sort(sortingFn[pollOrder]) - .map((poll, idx) => )} + .map((poll) => )} }