Skip to content

Commit

Permalink
fix(market): fix duplicate keys (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
gershon authored Nov 19, 2024
1 parent 853eea2 commit c2f93cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function DesktopTokenActivity({
{tokenActivity.map((activity) => (
<TableRow
className="group h-[4.6875rem]"
key={`activity-${activity.time_stamp}`}
key={`activity-${activity.activity_type}-${activity.time_stamp}`}
>
<EventCell activity={activity} />
<TableCell>
Expand Down

0 comments on commit c2f93cc

Please sign in to comment.