Skip to content

Commit 2e53909

Browse files
committed
Format
1 parent 37fa7ae commit 2e53909

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

packages/prompts/src/multi-select.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,15 @@ export const multiselect = <Value>(opts: MultiSelectOptions<Value>) => {
120120
);
121121
};
122122
const required = opts.required ?? true;
123-
const hint = ' ' + color.reset(
123+
const hint =
124+
' ' +
125+
color.reset(
124126
color.dim(
125-
`Press ${color.gray(color.bgWhite(color.inverse(' space ')))} to select, ${color.gray(
126-
color.bgWhite(color.inverse(' enter ')),
127-
)} to submit`,
127+
`Press ${color.gray(color.bgWhite(color.inverse(' space ')))} to select, ${color.gray(
128+
color.bgWhite(color.inverse(' enter ')),
129+
)} to submit`,
128130
),
129-
)
131+
);
130132

131133
return new MultiSelectPrompt({
132134
options: opts.options,

0 commit comments

Comments
 (0)