Skip to content

Commit

Permalink
Merge pull request #12584 from germanocaumo/v2.3.x-release
Browse files Browse the repository at this point in the history
fix(poll): remove wrong argument in quick-polls
  • Loading branch information
antobinary committed Jun 14, 2021
2 parents d99ca45 + a4fc9c1 commit b3ffce6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -108,7 +108,7 @@ class QuickPollDropdown extends Component {
);

const { slideId, quickPollOptions } = parsedSlide;
const quickPolls = getAvailableQuickPolls(slideId, quickPollOptions, startPoll, intl, pollTypes);
const quickPolls = getAvailableQuickPolls(slideId, quickPollOptions, startPoll, pollTypes);

if (quickPollOptions.length === 0) return null;

Expand Down

0 comments on commit b3ffce6

Please sign in to comment.