Skip to content
Prev Previous commit
Next Next commit
fix(infisical): make get_secret fallback consistent with other tools
  • Loading branch information
waleedlatif1 committed Mar 19, 2026
commit 0abb417d364ea9998161ca701e4662b287c5e176
2 changes: 1 addition & 1 deletion apps/sim/tools/infisical/get_secret.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const getSecretTool: ToolConfig<InfisicalGetSecretParams, InfisicalGetSec
error: data.message ?? `Request failed with status ${response.status}`,
}
}
const s = data.secret ?? {}
const s = data.secret ?? data
return {
success: true,
output: {
Expand Down
Loading