Skip to content

Commit

Permalink
fix missing cp cost for strat ploys
Browse files Browse the repository at this point in the history
  • Loading branch information
jaaimino committed Oct 30, 2024
1 parent a9e099a commit 08d70cc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/ploy-cards/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ export default function PloyCards(props) {
</Stack>
</Card> : <Card>
<Stack align="flex-start">
<Title order={4}>{ploy.ployname}</Title>
<Group>
<Title order={4}>{ploy.ployname}</Title>
<Badge size="lg" radius="sm" p={3}>{`${ploy.CP} CP`}</Badge>
</Group>
<div dangerouslySetInnerHTML={{ __html: `${convertShapes(ploy.description)}` }} />
</Stack>
</Card>}
Expand All @@ -35,7 +38,7 @@ export default function PloyCards(props) {
<Card>
<Stack>
<Group>
<Title order={3}>{ploy.ployname}</Title>
<Title order={4}>{ploy.ployname}</Title>
<Badge size="lg" radius="sm" p={3}>{`${ploy.CP} CP`}</Badge>
</Group>
<div dangerouslySetInnerHTML={{ __html: `${convertShapes(ploy.description)}` }} />
Expand Down

0 comments on commit 08d70cc

Please sign in to comment.