summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Help.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/components/Help.tsx')
-rw-r--r--packages/cli/src/ui/components/Help.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/components/Help.tsx b/packages/cli/src/ui/components/Help.tsx
index 5a04514a..c51867af 100644
--- a/packages/cli/src/ui/components/Help.tsx
+++ b/packages/cli/src/ui/components/Help.tsx
@@ -78,8 +78,8 @@ export const Help: React.FC<Help> = ({ commands }) => (
{command.subCommands &&
command.subCommands.map((subCommand) => (
<Text key={subCommand.name} color={Colors.Foreground}>
- <Text> </Text>
<Text bold color={Colors.AccentPurple}>
+ {' '}
{subCommand.name}
</Text>
{subCommand.description && ' - ' + subCommand.description}