Skip to content

Commit 409e726

Browse files
committed
fix: correct check
1 parent 4a5b141 commit 409e726

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)