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 authored and xbtmatt committed Sep 9, 2024
1 parent ffc8323 commit 92438cb
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 92438cb

Please sign in to comment.