Skip to content

Commit 93d3e0b

Browse files
authored
Merge pull request Expensify#67660 from Eskalifer1/fix/67343
fix:67343: Removed the sorting restriction when status is an array
2 parents 7ee68b1 + 567b4f0 commit 93d3e0b

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
@@ -724,7 +724,7 @@ function Search({queryJSON, searchResults, onSearchListScroll, contentContainerS
724724

725725
const shouldShowYear = shouldShowYearUtil(searchResults?.data);
726726
const {shouldShowAmountInWideColumn, shouldShowTaxAmountInWideColumn} = getWideAmountIndicators(searchResults?.data);
727-
const shouldShowSorting = !Array.isArray(status) && !groupBy;
727+
const shouldShowSorting = !groupBy;
728728
const shouldShowTableHeader = isLargeScreenWidth && !isChat;
729729

730730
return (

0 commit comments

Comments
 (0)