diff --git a/packages/expo-cli/src/commands/start/TerminalUI.ts b/packages/expo-cli/src/commands/start/TerminalUI.ts index 482b1d77fe..275d9d6bd7 100644 --- a/packages/expo-cli/src/commands/start/TerminalUI.ts +++ b/packages/expo-cli/src/commands/start/TerminalUI.ts @@ -37,7 +37,7 @@ type StartOptions = { }; const printHelp = (): void => { - logCommandsTable([[], ['?', 'show all commands']]); + logCommandsTable([['?', 'show all commands']]); }; const div = chalk.dim(`│`); @@ -79,6 +79,7 @@ const printUsageAsync = async ( ['d', `open developer tools`], ['shift+d', `toggle auto opening developer tools on startup`, currentToggle], !options.webOnly && ['e', `share the app link by email`], + [], ]); }; @@ -96,6 +97,7 @@ const printBasicUsageAsync = async (options: Pick = {}) ['d', `open developer tools`], ['shift+d', `toggle auto opening developer tools on startup`, currentToggle], !options.webOnly && ['e', `share the app link by email`], + [], ]); };