From 5b44f60e040871800e1654bc9c3fc1c25ac4865c Mon Sep 17 00:00:00 2001 From: Zhe Date: Tue, 7 Jun 2022 15:08:28 +0900 Subject: [PATCH] FIX abnormal spaces at start of ${readme} Removed extra newline code which causes abnormal line indentation at the start of ${readme} with extra 2 spaces --- src/utils/bin/api_commands.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/bin/api_commands.ts b/src/utils/bin/api_commands.ts index ce4d487..069cf01 100644 --- a/src/utils/bin/api_commands.ts +++ b/src/utils/bin/api_commands.ts @@ -22,8 +22,7 @@ export const quote = async (args: string[]): Promise => { export const readme = async (args: string[]): Promise => { const readme = await getReadme(); - return `Opening GitHub README...\n - ${readme}`; + return `Opening GitHub README...\n${readme}`; }; export const weather = async (args: string[]): Promise => {