Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 2ae71b3

Browse files
authored
Explorer: Fix account history load more behavior (#11689)
1 parent 48e281c commit 2ae71b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

explorer/src/providers/accounts/history.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function reconcile(
4343
history: AccountHistory | undefined,
4444
update: HistoryUpdate | undefined
4545
) {
46-
if (update?.history === undefined) return;
46+
if (update?.history === undefined) return history;
4747
return {
4848
fetched: combineFetched(
4949
update.history.fetched,

0 commit comments

Comments
 (0)