Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(box): filter empty strings from tags array in update_file
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Mar 19, 2026
commit ea948a692ecd9d62957959c42d270bd45f5f652d
2 changes: 1 addition & 1 deletion apps/sim/tools/box/update_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const boxUpdateFileTool: ToolConfig<BoxUpdateFileParams, BoxFileInfoRespo
if (params.name) body.name = params.name
if (params.description !== undefined) body.description = params.description
if (params.parentFolderId) body.parent = { id: params.parentFolderId.trim() }
if (params.tags) body.tags = params.tags.split(',').map((t: string) => t.trim())
if (params.tags) body.tags = params.tags.split(',').map((t: string) => t.trim()).filter(Boolean)
return body
Comment thread
greptile-apps[bot] marked this conversation as resolved.
},
},
Expand Down