Skip to content

Commit

Permalink
Add hyphen in between substring of component key
Browse files Browse the repository at this point in the history
  • Loading branch information
matt committed Sep 6, 2024
1 parent 281d338 commit 8bc3fa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const LiveClientGrid = ({
{ordered.map((v) => {
return (
<TableCard
key={`live-${v.marketID}${v.searchEmojisKey}`}
key={`live-${v.marketID}-${v.searchEmojisKey}`}
index={v.index}
pageOffset={0} // We don't paginate the live grid.
marketID={v.marketID}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const ClientGrid = ({
{ordered.map((v, i) => {
return (
<TableCard
key={`live-${v.marketID}${v.searchEmojisKey}`}
key={`live-${v.marketID}-${v.searchEmojisKey}`}
index={i}
pageOffset={(page - 1) * MARKETS_PER_PAGE}
marketID={v.marketID}
Expand Down

0 comments on commit 8bc3fa3

Please sign in to comment.