Skip to content
Merged
Changes from 1 commit
Commits
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
style(tools): remove redundant type annotation in fields map callback
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Apr 10, 2026
commit e40021df7291d1f42a5de150690884bc500a56a4
2 changes: 1 addition & 1 deletion apps/sim/blocks/blocks/jira.ts
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ Return ONLY the comment text - no explanations.`,
fields: params.fields
? params.fields
.split(',')
.map((f: string) => f.trim())
.map((f) => f.trim())
.filter(Boolean)
: undefined,
}
Expand Down
Loading