Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

[expo-cli] use correct description for openDevToolsAtStartup in the ? message #2755

Merged
merged 1 commit into from Oct 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/expo-cli/src/commands/start/TerminalUI.ts
Expand Up @@ -51,7 +51,7 @@ const printUsage = async (projectDir: string, options: Pick<StartOptions, 'webOn
const { dev } = await ProjectSettings.readAsync(projectDir);
const openDevToolsAtStartup = await UserSettings.getAsync('openDevToolsAtStartup', true);
const devMode = dev ? 'development' : 'production';
const currentToggle = openDevToolsAtStartup ? 'disabled' : 'enabled';
const currentToggle = openDevToolsAtStartup ? 'enabled' : 'disabled';

const isMac = process.platform === 'darwin';

Expand Down