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

Commit

Permalink
Explorer: Fix account history load more behavior (#11689)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry authored Aug 18, 2020
1 parent 48e281c commit 2ae71b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explorer/src/providers/accounts/history.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function reconcile(
history: AccountHistory | undefined,
update: HistoryUpdate | undefined
) {
if (update?.history === undefined) return;
if (update?.history === undefined) return history;
return {
fetched: combineFetched(
update.history.fetched,
Expand Down

0 comments on commit 2ae71b3

Please sign in to comment.