Skip to content

Commit

Permalink
chore: Remove unnecessary code in VisualMatchingPairs.js
Browse files Browse the repository at this point in the history
  • Loading branch information
drikusroor committed Jan 9, 2024
1 parent 627a093 commit dc44f3d
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions frontend/src/components/VisualMatchingPairs/VisualMatchingPairs.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,19 +225,6 @@ const VisualMatchingPairs = (props) => {

return (
<div className="aha__visual-matching-pairs">
<p>First card index {firstCard}</p>
<p>Second card index {secondCard}</p>
<p>In between turns {inBetweenTurns ? 'true' : 'false'}</p>
<p>Score {score}</p>
<p>End {end ? 'true' : 'false'}</p>
<p>Player index {playerIndex}</p>
<p>Amount of turned cards: {gameState.filter(s => s.turned).length}</p>
<p>Amount of inactive cards: {gameState.filter(s => s.inactive).length}</p>
<p>Amount of seen cards: {gameState.filter(s => s.seen).length}</p>
<p>Amount of noevents cards: {gameState.filter(s => s.noevents).length}</p>
<p>Amount of lucky cards: {gameState.filter(s => s.lucky).length}</p>
<p>Amount of memory cards: {gameState.filter(s => s.memory).length}</p>
<p>Amount of nomatch cards: {gameState.filter(s => s.nomatch).length}</p>

<div className="row justify-content-around">
<div className="col-6 align-self-start">
Expand Down

0 comments on commit dc44f3d

Please sign in to comment.