瀏覽代碼

Fixing bug with goToSummary in NextRoundButton

Kirk Trombley 5 年之前
父節點
當前提交
33d8d9238a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/src/components/screens/RoundSummary/NextRoundButton.jsx

+ 1 - 1
client/src/components/screens/RoundSummary/NextRoundButton.jsx

@@ -24,7 +24,7 @@ export default () => {
       ? <NextButton onEnd={dispatch.startRound} countDownFormatter={rem => `Click to cancel, ${rem}s...`}>
           Next Round
         </NextButton>
-      : <FinishedButton onClick={dispatch.goToSummary}>
+      : <FinishedButton onClick={() => dispatch.goToSummary()}>
           View Summary
         </FinishedButton>
   );