Skip to content

Commit

Permalink
Merge pull request #155 from daithihearn/naming
Browse files Browse the repository at this point in the history
Renaming label
  • Loading branch information
daithihearn authored Mar 10, 2023
2 parents 00d19da + 495f172 commit 0f82547
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "5.5.7",
"version": "5.5.8",
"description": "React frontend for the Cards 110",
"author": "Daithi Hearn",
"license": "MIT",
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.7",
"version": "5.5.8",
"icons": [
{
"src": "./assets/favicon.png",
Expand Down
6 changes: 3 additions & 3 deletions src/components/Game/Actions/PlayCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { BLANK_CARD } from "model/Cards"
import parseError from "utils/ErrorUtils"
import { RoundStatus } from "model/Round"

const WaitingForYourGo = () => (
const WaitingForYourTurn = () => (
<Button disabled type="button" color="info">
<b>Waiting for your go...</b>
<b>Wait for your turn...</b>
</Button>
)

Expand Down Expand Up @@ -50,7 +50,7 @@ const PlayCard = () => {
}
}, [gameId, selectedCards])

if (!playButtonEnabled) return <WaitingForYourGo />
if (!playButtonEnabled) return <WaitingForYourTurn />
return (
<Button
id="playCardButton"
Expand Down

0 comments on commit 0f82547

Please sign in to comment.