diff --git a/src/renderer/components/+catalog/catalog-entity.store.tsx b/src/renderer/components/+catalog/catalog-entity.store.tsx index 1350573659..225767d78f 100644 --- a/src/renderer/components/+catalog/catalog-entity.store.tsx +++ b/src/renderer/components/+catalog/catalog-entity.store.tsx @@ -68,19 +68,4 @@ export class CatalogEntityStore extends ItemStore this.entities, undefined, true); } - - /** - * Override ItemStore::loadItems, the only difference is that - * if isLoading is true, we await for it to be false and then continue - * loading. - * This avoids a bug where if there were two or more concurrent loadItems() calls, - * only the first one would complete. - */ - protected loadItems( - request: (() => Promise[] | any>) | (() => CatalogEntityItem[] | any), - sortItems = true, - concurrency = false, - ) { - return super.loadItems(request, sortItems, concurrency); - } }