From 85aea97c21190fe91c014cb586e5f11a3f1b7e80 Mon Sep 17 00:00:00 2001 From: yujiangping Date: Wed, 4 Mar 2026 15:13:14 +0800 Subject: [PATCH] chore(web): disable market tab in tool management - Comment out Market component rendering in ToolManagement view - Update LastEditTime timestamp in file header - Market tab functionality temporarily disabled pending further developmen --- web/src/views/ToolManagement/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/views/ToolManagement/index.tsx b/web/src/views/ToolManagement/index.tsx index d684ebdd..c9383258 100644 --- a/web/src/views/ToolManagement/index.tsx +++ b/web/src/views/ToolManagement/index.tsx @@ -4,7 +4,7 @@ * @Author: yujiangping * @Date: 2026-01-05 17:22:23 * @LastEditors: yujiangping - * @LastEditTime: 2026-03-04 12:24:01 + * @LastEditTime: 2026-03-04 15:12:48 */ import React, { useState } from 'react'; import { Tabs } from 'antd'; @@ -54,7 +54,7 @@ const ToolManagement: React.FC = () => { {activeTab === 'mcp' && } {activeTab === 'inner' && } {activeTab === 'custom' && } - {activeTab === 'market' && } + {/* {activeTab === 'market' && } */} ); };