Browse Source

Fixing bug with goToSummary in NextRoundButton

Kirk Trombley 5 năm trước cách đây
mục cha
commit
33d8d9238a

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