From 58e4df44e24bb05e051001e68cd4c6c0ed14a361 Mon Sep 17 00:00:00 2001 From: Koshkoshinsk Date: Sun, 3 May 2026 16:23:52 +0300 Subject: [PATCH] fix: add hint to channel multiselect in migration Co-Authored-By: Claude Opus 4.6 --- setup/migrate-v2/select-channels.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/migrate-v2/select-channels.ts b/setup/migrate-v2/select-channels.ts index eecf1ab..a2c8b21 100644 --- a/setup/migrate-v2/select-channels.ts +++ b/setup/migrate-v2/select-channels.ts @@ -12,6 +12,7 @@ import fs from 'fs'; import * as p from '@clack/prompts'; +import { styleText } from 'node:util'; const CHANNELS = [ { value: 'telegram', label: 'Telegram' }, @@ -47,7 +48,7 @@ async function main(): Promise { } const selected = await p.multiselect({ - message: 'Which channels do you want to set up?', + message: 'Which channels do you want to set up?\n' + styleText('dim', ' space to select, enter to confirm') + '\n', options: CHANNELS, required: false, });