From c1765ca0cb628b40f5c8970604f33f1ed63051c0 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Sun, 26 Jun 2022 19:44:10 -0500 Subject: [PATCH] Use green for FR (and numeric) cards --- web/components/contract/quick-bet.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/web/components/contract/quick-bet.tsx b/web/components/contract/quick-bet.tsx index 5dbb0fb5..9ee8b165 100644 --- a/web/components/contract/quick-bet.tsx +++ b/web/components/contract/quick-bet.tsx @@ -325,14 +325,6 @@ export function getColor(contract: Contract) { ) } - if (contract.outcomeType === 'NUMERIC') { - return 'blue-400' - } - - if (contract.outcomeType === 'FREE_RESPONSE') { - return 'blue-400' - } - if ((contract.closeTime ?? Infinity) < Date.now()) { return 'gray-400' }