Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions apps/explorer/src/routes/_layout/address/$address.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -784,14 +784,10 @@ function SectionsWrapper(props: {
*/
const data = isMounted ? queryData : page === 1 ? initialData : queryData
const {
transactions,
total: approximateTotal,
hasMore,
} = data ?? {
transactions: [],
total: 0,
hasMore: false,
}
transactions = [],
total: approximateTotal = 0,
hasMore = false,
} = data ?? {}

// Fetch exact total count in the background (only when on history tab)
// Don't cache across tabs/pages - always show "..." until loaded each time
Expand Down