We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b846b commit 8cfa39bCopy full SHA for 8cfa39b
apps/sim/lib/workflows/db-helpers.ts
@@ -150,12 +150,7 @@ export async function loadWorkflowFromNormalizedTables(
150
})
151
152
// Sanitize any invalid custom tools in agent blocks to prevent client crashes
153
- const { blocks: sanitizedBlocks, warnings } = sanitizeAgentToolsInBlocks(blocksMap)
154
- if (warnings.length > 0) {
155
- logger.warn(`Sanitized workflow ${workflowId} tools with ${warnings.length} warning(s)`, {
156
- warnings,
157
- })
158
- }
+ const { blocks: sanitizedBlocks } = sanitizeAgentToolsInBlocks(blocksMap)
159
160
// Convert edges to the expected format
161
const edgesArray: Edge[] = edges.map((edge) => ({
0 commit comments