From bdf6739b86155096e2c648565335f8645a2172d5 Mon Sep 17 00:00:00 2001 From: zxhlyh Date: Mon, 9 Feb 2026 10:35:40 +0800 Subject: [PATCH] fix: search model provider list (#32106) --- .../header/account-setting/model-provider-page/hooks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/header/account-setting/model-provider-page/hooks.ts b/web/app/components/header/account-setting/model-provider-page/hooks.ts index 6aba41d4e4..8db964cc27 100644 --- a/web/app/components/header/account-setting/model-provider-page/hooks.ts +++ b/web/app/components/header/account-setting/model-provider-page/hooks.ts @@ -308,7 +308,7 @@ export const useMarketplaceAllPlugins = (providers: ModelProvider[], searchText: }, [plugins, collectionPlugins, exclude]) return { - plugins: allPlugins, + plugins: searchText ? plugins : allPlugins, isLoading: isCollectionLoading || isPluginsLoading, } }