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
fix(tools): restore type annotation for implicit any in params callback
The params object is untyped, so TypeScript cannot infer the string
element type from .split() — the explicit annotation is required.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Apr 10, 2026
commit 987f72354ed753d738701c31516fab4e8593e8ac
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) => f.trim())
.map((f: string) => f.trim())
Comment thread
waleedlatif1 marked this conversation as resolved.
.filter(Boolean)
: undefined,
}
Expand Down
Loading