diff --git a/web/app/components/header/account-setting/model-provider-page/index.tsx b/web/app/components/header/account-setting/model-provider-page/index.tsx
index f807bd7922..7faf3f3de7 100644
--- a/web/app/components/header/account-setting/model-provider-page/index.tsx
+++ b/web/app/components/header/account-setting/model-provider-page/index.tsx
@@ -222,7 +222,7 @@ const ModelProviderPage = ({ searchText }: Props) => {
{!collapse && !isPluginsLoading && (
{plugins.map(plugin => (
-
+
))}
)}
diff --git a/web/app/components/plugins/install-plugin/base/installed.tsx b/web/app/components/plugins/install-plugin/base/installed.tsx
index 442a61e372..eba50a6b21 100644
--- a/web/app/components/plugins/install-plugin/base/installed.tsx
+++ b/web/app/components/plugins/install-plugin/base/installed.tsx
@@ -1,11 +1,13 @@
'use client'
import type { FC } from 'react'
import React from 'react'
-import type { Plugin, PluginDeclaration, PluginManifestInMarket } from '../../types'
+import { useTranslation } from 'react-i18next'
import Card from '../../card'
import Button from '@/app/components/base/button'
+import { useUpdateModelProviders } from '@/app/components/header/account-setting/model-provider-page/hooks'
+import { PluginType } from '../../types'
+import type { Plugin, PluginDeclaration, PluginManifestInMarket } from '../../types'
import { pluginManifestInMarketToPluginProps, pluginManifestToCardPluginProps } from '../utils'
-import { useTranslation } from 'react-i18next'
import Badge, { BadgeState } from '@/app/components/base/badge/index'
type Props = {
@@ -24,6 +26,13 @@ const Installed: FC = ({
onCancel,
}) => {
const { t } = useTranslation()
+ const updateModelProviders = useUpdateModelProviders()
+
+ const handleClose = () => {
+ onCancel()
+ if (payload?.category === PluginType.model)
+ updateModelProviders()
+ }
return (
<>
@@ -45,7 +54,7 @@ const Installed: FC
= ({
diff --git a/web/app/components/plugins/provider-card.tsx b/web/app/components/plugins/provider-card.tsx
index 3f2d889bc0..63df53d0c5 100644
--- a/web/app/components/plugins/provider-card.tsx
+++ b/web/app/components/plugins/provider-card.tsx
@@ -19,13 +19,11 @@ import { useBoolean } from 'ahooks'
type Props = {
className?: string
payload: Plugin
- onSuccess: () => void
}
const ProviderCard: FC = ({
className,
payload,
- onSuccess,
}) => {
const { t } = useTranslation()
const [isShowInstallFromMarketplace, {
@@ -86,10 +84,7 @@ const ProviderCard: FC = ({
manifest={payload as any}
uniqueIdentifier={payload.latest_package_identifier}
onClose={hideInstallFromMarketplace}
- onSuccess={() => {
- onSuccess()
- hideInstallFromMarketplace()
- }}
+ onSuccess={() => hideInstallFromMarketplace()}
/>
)
}