We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37fa7ae commit 2e53909Copy full SHA for 2e53909
1 file changed
packages/prompts/src/multi-select.ts
@@ -120,13 +120,15 @@ export const multiselect = <Value>(opts: MultiSelectOptions<Value>) => {
120
);
121
};
122
const required = opts.required ?? true;
123
- const hint = ' ' + color.reset(
+ const hint =
124
+ ' ' +
125
+ color.reset(
126
color.dim(
- `Press ${color.gray(color.bgWhite(color.inverse(' space ')))} to select, ${color.gray(
- color.bgWhite(color.inverse(' enter ')),
127
- )} to submit`,
+ `Press ${color.gray(color.bgWhite(color.inverse(' space ')))} to select, ${color.gray(
128
+ color.bgWhite(color.inverse(' enter ')),
129
+ )} to submit`,
130
),
- )
131
+ );
132
133
return new MultiSelectPrompt({
134
options: opts.options,
0 commit comments