Skip to content

Commit 6d1e5e6

Browse files
committed
chore: hack
1 parent b623d6a commit 6d1e5e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/prompts/group-multiselect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default class GroupMultiSelectPrompt<T extends { value: any }> extends Pr
4747
this.options = Object.entries(options).flatMap(([key, option]) => [
4848
{ value: key, group: true, label: key },
4949
...option.map((opt) => ({ ...opt, group: key })),
50-
]);
50+
]) as any;
5151
this.value = [...(opts.initialValues ?? [])];
5252
this.cursor = Math.max(
5353
this.options.findIndex(({ value }) => value === opts.cursorAt),

0 commit comments

Comments
 (0)