From af276f27619af02ae47d6b1c6f55918fb2ea3d6a Mon Sep 17 00:00:00 2001 From: Marks Polakovs Date: Sat, 4 May 2024 10:15:04 +0100 Subject: [PATCH] fencing: fix double-touch (#125) --- scores-src/src/common/sports/rosesFencing/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scores-src/src/common/sports/rosesFencing/index.tsx b/scores-src/src/common/sports/rosesFencing/index.tsx index 96c5b89..baa7195 100644 --- a/scores-src/src/common/sports/rosesFencing/index.tsx +++ b/scores-src/src/common/sports/rosesFencing/index.tsx @@ -164,6 +164,8 @@ const slice = createSlice({ }, doubleTap: { reducer(state) { + state.scoreHome++; + state.scoreAway++; state.segmentPoints[state.segmentPoints.length - 1].push({ side: "home", player: null,