From 7cd41b9a96a83cd5060e157f49d9b695d4d9842b Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Tue, 6 Jan 2026 10:59:20 -0500 Subject: [PATCH] don't refresh collections when clicking settings in product code --- src/Explorer/Tree/Collection.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Explorer/Tree/Collection.ts b/src/Explorer/Tree/Collection.ts index 5f2d0df15..6e423ee10 100644 --- a/src/Explorer/Tree/Collection.ts +++ b/src/Explorer/Tree/Collection.ts @@ -598,8 +598,6 @@ export default class Collection implements ViewModels.Collection { public onSettingsClick = async (): Promise => { useSelectedNode.getState().setSelectedNode(this); const throughputCap = userContext.databaseAccount?.properties.capacity?.totalThroughputLimit; - // // Refresh all databases in case they were deleted outside of user session - await this.container.onRefreshResourcesClick(); throughputCap && throughputCap !== -1 ? await useDatabases.getState().loadAllOffers() : await this.loadOffer(); this.selectedSubnodeKind(ViewModels.CollectionTabKind.Settings);