From 2ae71b30aefd5075deb63528dc6e94885ec7c089 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Tue, 18 Aug 2020 21:04:19 +0800 Subject: [PATCH] Explorer: Fix account history load more behavior (#11689) --- explorer/src/providers/accounts/history.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/providers/accounts/history.tsx b/explorer/src/providers/accounts/history.tsx index f66faecc966a2e..e09e0755c31572 100644 --- a/explorer/src/providers/accounts/history.tsx +++ b/explorer/src/providers/accounts/history.tsx @@ -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,