Skip to content

Commit 9f23eac

Browse files
authored
Merge pull request Expensify#65682 from Expensify/jsenyitko-fix-dropdown-options
Fix bulk actions not showing on reports page
2 parents ceaf183 + 9e901bf commit 9f23eac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/Search/SearchPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function SearchPage({route}: SearchPageProps) {
109109
const selectedTransactionsKeys = Object.keys(selectedTransactions ?? {});
110110

111111
const headerButtonsOptions = useMemo(() => {
112-
if (selectedTransactionsKeys.length === 0 || !status || !hash) {
112+
if (selectedTransactionsKeys.length === 0 || status == null || !hash) {
113113
return [];
114114
}
115115

0 commit comments

Comments
 (0)