Skip to content

Commit 22387b4

Browse files
committed
Making CTAs primary instead of warning
1 parent 302a47e commit 22387b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Game/Buying.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const Buying = () => {
7878
type="button"
7979
onClick={toggleReadyToBuy}
8080
color={
81-
isMyGo || !readyToBuy ? "warning" : "secondary"
81+
isMyGo || !readyToBuy ? "primary" : "secondary"
8282
}>
8383
<b>
8484
{isMyGo || !readyToBuy

src/components/Game/MyCards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ const MyCards: React.FC = () => {
294294
disabled={!playButtonEnabled}
295295
type="button"
296296
onClick={playCard}
297-
color="warning">
297+
color="primary">
298298
<b>Play Card</b>
299299
</Button>
300300
</ButtonGroup>

0 commit comments

Comments
 (0)