Skip to content

Commit 323ead1

Browse files
committed
Lint
1 parent cc33ab9 commit 323ead1

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

apps/sim/lib/copilot/tools/server/blocks/get-block-options.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ export const getBlockOptionsServerTool: BaseServerTool<
2929
{ id: 'for', name: 'For', description: 'Run a fixed number of iterations.' },
3030
{ id: 'forEach', name: 'For each', description: 'Iterate over a collection.' },
3131
{ id: 'while', name: 'While', description: 'Repeat while a condition is true.' },
32-
{ id: 'doWhile', name: 'Do while', description: 'Run once, then repeat while a condition is true.' },
32+
{
33+
id: 'doWhile',
34+
name: 'Do while',
35+
description: 'Run once, then repeat while a condition is true.',
36+
},
3337
],
3438
}
3539
return GetBlockOptionsResult.parse(result)
@@ -41,7 +45,11 @@ export const getBlockOptionsServerTool: BaseServerTool<
4145
blockName: 'Parallel',
4246
operations: [
4347
{ id: 'count', name: 'Count', description: 'Run a fixed number of parallel branches.' },
44-
{ id: 'collection', name: 'Collection', description: 'Run one branch per collection item.' },
48+
{
49+
id: 'collection',
50+
name: 'Collection',
51+
description: 'Run one branch per collection item.',
52+
},
4553
],
4654
}
4755
return GetBlockOptionsResult.parse(result)

0 commit comments

Comments
 (0)