refactor: type improvements that doesn't modify functionality (#17970)

This commit is contained in:
yusheng chen 2025-04-14 16:06:10 +08:00 committed by GitHub
commit 4c99e9dc73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 69 additions and 63 deletions

View file

@ -59,7 +59,7 @@ const ImportFromTool: FC<Props> = ({
})()
const currCollection = currentTools.find(item => canFindTool(item.id, provider_id))
const currTool = currCollection?.tools.find(tool => tool.name === tool_name)
const toExactParams = (currTool?.parameters || []).filter((item: any) => item.form === 'llm')
const toExactParams = (currTool?.parameters || []).filter(item => item.form === 'llm')
const formattedParams = toParmExactParams(toExactParams, language)
onImport(formattedParams)
}, [buildInTools, customTools, language, onImport, workflowTools])