Skip to content

Commit

Permalink
Remove react warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Teddy Sterne committed Jun 15, 2020
1 parent 52d3262 commit f962f38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/game/components/TokenRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@ export const TokenRow: FC<Props> = (props) => {
{tokens.map((f, index) =>
index === revealedIndex ? (
<Fate
key={index}
num={f}
styles={{
margin: 2,
transform: "scale(0.65)",
}}
/>
) : (
<Tile />
<Tile key={index} />
),
)}
</FateRow>
Expand Down

0 comments on commit f962f38

Please sign in to comment.