From 52762438c6998b79a3929ea206d9fedf2eaf2b62 Mon Sep 17 00:00:00 2001 From: "Wesley F. Young" Date: Sun, 11 Aug 2024 22:54:24 +0800 Subject: [PATCH] chore: fix indentation --- src/shell/napcat.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/shell/napcat.ts b/src/shell/napcat.ts index b30729a5..e978152b 100644 --- a/src/shell/napcat.ts +++ b/src/shell/napcat.ts @@ -139,8 +139,10 @@ export async function NCoreInitShell() { } else { logger.log('没有 -q 指令指定快速登录,或未曾登录过这个 QQ,将使用二维码登录方式'); if (historyLoginList.length > 0) { - logger.log(`可用于快速登录的 QQ:\n${historyLoginList.map((u, index) => `${index + 1}. ${u.uin} ${u.nickName}`).join('\n') - }`); + logger.log(`可用于快速登录的 QQ:\n${ + historyLoginList.map((u, index) => `${index + 1}. ${u.uin} ${u.nickName}`) + .join('\n') + }`); } loginService.getQRCodePicture(); }