From 1f3f800a577c43425d6a13019f7c4ebd38ada146 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Wed, 18 May 2022 17:06:13 -0400 Subject: [PATCH] Show close time in cards on close date sort --- web/components/contract-search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/contract-search.tsx b/web/components/contract-search.tsx index afcd7612..757fc685 100644 --- a/web/components/contract-search.tsx +++ b/web/components/contract-search.tsx @@ -203,7 +203,7 @@ export function ContractSearchInner(props: { contracts={contracts} loadMore={showMore} hasMore={!isLastPage} - showCloseTime={index === 'contracts-closing-soon'} + showCloseTime={index.endsWith('close-date')} /> ) }