Skip to content

Commit

Permalink
Address console warning: Invalid DOM property 'class'
Browse files Browse the repository at this point in the history
  • Loading branch information
zarns committed Jul 1, 2024
1 parent 5ae1f4f commit 9789a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/pages/Tile.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function Tile({ center, coordinate, tile, size }) {
contents = (
<NumberToken size={size}>
<div>{tile.number}</div>
<div class="pips">{numberToPips(tile.number)}</div>
<div className="pips">{numberToPips(tile.number)}</div>
</NumberToken>
);
resourceTile = {
Expand Down

0 comments on commit 9789a4c

Please sign in to comment.