We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nftsLoading
1 parent d10461c commit 1f25af3Copy full SHA for 1f25af3
ui/components/app/assets/nfts/nfts-tab/nfts-tab.js
@@ -103,12 +103,15 @@ export default function NftsTab() {
103
}, [nftsLoading, showNftBanner]);
104
105
useEffect(() => {
106
+ if (nftsLoading) {
107
+ return;
108
+ }
109
if (nftsStillFetchingIndication) {
110
endTrace({ name: TraceName.AccountOverviewNftsTabFMP });
111
} else {
112
endTrace({ name: TraceName.AccountOverviewNftsTab });
113
}
- }, [nftsStillFetchingIndication]);
114
+ }, [nftsLoading, nftsStillFetchingIndication]);
115
116
if (!hasAnyNfts && nftsStillFetchingIndication) {
117
return (
0 commit comments