Skip to content

Commit

Permalink
fix rendering bools
Browse files Browse the repository at this point in the history
  • Loading branch information
generall committed Jun 3, 2023
1 parent 68c3ed3 commit 0f1243e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Points/PointCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const PointCard = (props) => {
color="text.secondary"
display={"inline"}
>
{"\t"} {data.payload[key]}
{"\t"} {data.payload[key].toString() }
</Typography>
)}
</Grid>
Expand Down

0 comments on commit 0f1243e

Please sign in to comment.