|
|
|
@ -31,7 +31,7 @@ const AllTools = ({
|
|
|
|
const tools = useMemo(() => {
|
|
|
|
const tools = useMemo(() => {
|
|
|
|
let mergedTools: ToolWithProvider[] = []
|
|
|
|
let mergedTools: ToolWithProvider[] = []
|
|
|
|
if (activeTab === ToolTypeEnum.All)
|
|
|
|
if (activeTab === ToolTypeEnum.All)
|
|
|
|
mergedTools = [...buildInTools, ...customTools]
|
|
|
|
mergedTools = [...buildInTools, ...customTools, ...workflowTools]
|
|
|
|
if (activeTab === ToolTypeEnum.BuiltIn)
|
|
|
|
if (activeTab === ToolTypeEnum.BuiltIn)
|
|
|
|
mergedTools = buildInTools
|
|
|
|
mergedTools = buildInTools
|
|
|
|
if (activeTab === ToolTypeEnum.Custom)
|
|
|
|
if (activeTab === ToolTypeEnum.Custom)
|
|
|
|
|