Skip to content

Commit

Permalink
Loading when data is not actual and data is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
samchuk-vlad committed Jan 12, 2024
1 parent d473673 commit 3bdd44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/txHistory/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const TxHistoryLayout = ({ addresses }: TxHistoryLayoutProps) => {
)
}

const dataLoading = isEmptyArray(initialData.txs)
const dataLoading = isEmptyArray(initialData.txs) && !initialData.actualData

const List = useCallback(() => {
return (
Expand Down

0 comments on commit 3bdd44e

Please sign in to comment.