Skip to content

Commit

Permalink
Merge pull request #154 from daithihearn/dependency-updates
Browse files Browse the repository at this point in the history
Updating dependencies
  • Loading branch information
daithihearn authored Mar 2, 2023
2 parents 49cced8 + 271c2eb commit 00d19da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "5.5.6",
"version": "5.5.7",
"description": "React frontend for the Cards 110",
"author": "Daithi Hearn",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
"@popperjs/core": "^2.5.4",
"@reduxjs/toolkit": "^1.9.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/node": "^18.14.4",
"@types/react": "^18.0.28",
"@types/react-avatar-editor": "13",
"@types/react-dom": "^18.0.11",
Expand Down Expand Up @@ -50,7 +50,7 @@
"reactstrap": "9.1.6",
"semantic-ui-css": "^2.4.1",
"simple-line-icons": "^2.5.5",
"styled-components": "^5.2.3",
"styled-components": "^5.3.8",
"typescript": "^4.9.5",
"uuid-random": "^1.3.2"
},
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"short_name": "Cards 110",
"name": "Cards 110",
"version": "5.5.6",
"version": "5.5.7",
"icons": [
{
"src": "./assets/favicon.png",
Expand Down
6 changes: 5 additions & 1 deletion src/components/Game/PlayersAndCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ const PlayersAndCards = () => {
<PlayerCard
key={`playercard_${player.id}`}
player={player}
className={`image-team${(index % 3) + 1}-filter`}
className={
sortedPlayers.length === 6
? `image-team${(index % 3) + 1}-filter`
: ""
}
/>
))}
</Row>
Expand Down

0 comments on commit 00d19da

Please sign in to comment.