From 9004c694ca4a8b9952d7da36937884d27fb6f2a9 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Mon, 20 Jun 2022 08:58:18 -0500 Subject: [PATCH] Fix comments & bets mixing in tabs ui --- web/components/feed/activity-items.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/feed/activity-items.ts b/web/components/feed/activity-items.ts index dd5263e0..346314a3 100644 --- a/web/components/feed/activity-items.ts +++ b/web/components/feed/activity-items.ts @@ -155,7 +155,7 @@ export function getSpecificContractActivityItems( items.push( ...bets.map((bet) => ({ type: 'bet' as const, - id: bet.id, + id: bet.id + '-' + bet.isSold, bet, contract, hideOutcome: false,