소스 검색

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