Skip to content

Commit 31e8b55

Browse files
tonychang04claude
andcommitted
fix(insforge): use singular path param for storage_delete block config
Block config was using 'paths' (array) but tool expects 'path' (string). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b51f8b5 commit 31e8b55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/sim/blocks/blocks/insforge.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,10 +228,10 @@ export const InsForgeBlock: BlockConfig<InsForgeBaseResponse> = {
228228
},
229229
// Storage Delete fields
230230
{
231-
id: 'paths',
232-
title: 'File Paths (JSON array)',
233-
type: 'code',
234-
placeholder: '["folder/file1.jpg", "folder/file2.jpg"]',
231+
id: 'path',
232+
title: 'File Path',
233+
type: 'short-input',
234+
placeholder: 'folder/file.jpg',
235235
condition: { field: 'operation', value: 'storage_delete' },
236236
required: true,
237237
},

0 commit comments

Comments
 (0)