[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

fix: undefined `options`

Nate Moore (Feb 24, 2023, 7:12 PM -0600) f9c7f83d 11552e21

+1 -1
+1 -1
packages/core/src/prompts/group-multiselect.ts
··· 40 40 41 41 constructor(opts: GroupMultiSelectOptions<T>) { 42 42 super(opts, false); 43 - 43 + const { options } = opts; 44 44 this.options = Object.entries(options).flatMap(([key, option]) => [ 45 45 { value: key, group: true, label: key }, 46 46 ...option.map((opt) => ({ ...opt, group: key })),