Skip to content

Commit 5d88a77

Browse files
committed
Now showing more on initial load
1 parent e590053 commit 5d88a77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ui/app/components/historyViewer.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ const HistoryViewer = ({ history, network, currentAddr, addresses }) => {
5959
pending_slice = Array.from(new Set(pending_slice.concat(txs.map((tx) => tx.txHash))));
6060
await setTransactions(pending_slice, true);
6161
}
62-
} else if (memLoaded && slice.length < page * BATCH) {
62+
}
63+
if (memLoaded && slice.length < page * BATCH) {
6364
const txs = await getTransactions(page, BATCH, !memLoaded);
6465
if (txs.length <= 0) {
6566
setFinal(true);

0 commit comments

Comments
 (0)