diff --git a/web/app/(commonLayout)/plugins/Container.tsx b/web/app/(commonLayout)/plugins/Container.tsx index 5fee5354a2..58d996e7de 100644 --- a/web/app/(commonLayout)/plugins/Container.tsx +++ b/web/app/(commonLayout)/plugins/Container.tsx @@ -29,7 +29,7 @@ const Container = () => { }, [t]) const [activeTab, setActiveTab] = useTabSearchParams({ - defaultTab: 'plugins', + defaultTab: options[0].value, }) const containerRef = useRef(null) @@ -45,7 +45,7 @@ const Container = () => {
setActiveTab(newActiveTab)} + onChange={setActiveTab} options={options} />
@@ -108,10 +108,10 @@ const Container = () => {
{/* Plugin cards go here */}
-
+ {activeTab === 'plugins' &&
Drop plugin package here to install -
+
} ) }