@@ -116,7 +85,7 @@ const PluginDetailPanel: FC
= ({
diff --git a/web/app/components/plugins/plugin-page/plugins-panel.tsx b/web/app/components/plugins/plugin-page/plugins-panel.tsx
index da36e6c424..4db88a705b 100644
--- a/web/app/components/plugins/plugin-page/plugins-panel.tsx
+++ b/web/app/components/plugins/plugin-page/plugins-panel.tsx
@@ -1,4 +1,12 @@
'use client'
+import { useState } from 'react'
+import type { Plugin } from '../types'
+import PluginDetailPanel from '@/app/components/plugins/plugin-detail-panel'
+import {
+ // extensionDallE,
+ // modelGPT4,
+ toolNotion,
+} from '@/app/components/plugins/card/card-mock'
import type { FilterState } from './filter-management'
import FilterManagement from './filter-management'
@@ -9,6 +17,7 @@ const PluginsPanel = () => {
//
}
+ const [currentPluginDetail, setCurrentPluginDetail] = useState
(toolNotion as any)
return (
<>
@@ -22,6 +31,7 @@ const PluginsPanel = () => {
+