Skip to content

Commit

Permalink
Merge pull request #42 from iliashchuk/feat/display-deck-size
Browse files Browse the repository at this point in the history
display hand size
  • Loading branch information
JollyGrin authored Jul 11, 2024
2 parents 474c8a8 + 4ba4239 commit f7b9c1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/Game/Hand/hand.container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ export const HandContainer = ({
>
Draw + 1
</ModalButton>
<ModalButton onClick={() => setModal("deck")}>Deck</ModalButton>
<ModalButton onClick={() => setModal("deck")}>
Deck ({playerState?.pool?.deck?.length})
</ModalButton>
<ModalButton onClick={() => setModal("discard")}>Discard</ModalButton>
{playerState?.pool?.commit?.boost && (
<ModalButton
Expand Down

0 comments on commit f7b9c1d

Please sign in to comment.