Skip to content

Commit 8818d7b

Browse files
authored
Merge pull request Expensify#65733 from getusha/fix-65703
Fix: Unresponsive create-export
2 parents dcecca2 + d66195f commit 8818d7b

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
@@ -449,7 +449,7 @@ function SearchPage({route}: SearchPageProps) {
449449
};
450450

451451
const createExportAll = useCallback(() => {
452-
if (selectedTransactionsKeys.length === 0 || !status || !hash) {
452+
if (selectedTransactionsKeys.length === 0 || status == null || !hash) {
453453
return [];
454454
}
455455

0 commit comments

Comments
 (0)