From c92a5461547773b57a5bf892718790a2a8433347 Mon Sep 17 00:00:00 2001 From: William Hua Date: Tue, 5 Nov 2024 11:59:49 -0500 Subject: [PATCH] stop loading balances on collectible removal --- src/stores/CollectibleStore.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/stores/CollectibleStore.ts b/src/stores/CollectibleStore.ts index 749fefb..0387efa 100644 --- a/src/stores/CollectibleStore.ts +++ b/src/stores/CollectibleStore.ts @@ -194,9 +194,5 @@ export class CollectibleStore { c.tokenId !== collectibleInfo.collectibleInfoParams.tokenId ) this.local.userCollectibles.set(filtered) - - this.isFetchingCollectibleInfo.set(true) - this.loadBalances() - this.isFetchingCollectibleInfo.set(false) } }