Skip to content

Commit 567b4f0

Browse files
committed
fix:67343: Removed the sorting restriction when status is an array
1 parent dccb6ea commit 567b4f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Search/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ function Search({queryJSON, searchResults, onSearchListScroll, contentContainerS
701701

702702
const shouldShowYear = shouldShowYearUtil(searchResults?.data);
703703
const {shouldShowAmountInWideColumn, shouldShowTaxAmountInWideColumn} = getWideAmountIndicators(searchResults?.data);
704-
const shouldShowSorting = !Array.isArray(status) && !groupBy;
704+
const shouldShowSorting = !groupBy;
705705
const shouldShowTableHeader = isLargeScreenWidth && !isChat;
706706

707707
return (

0 commit comments

Comments
 (0)