From 8a0a2523ca50eabe1e0701ac049e2e5c7f61791a Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Thu, 5 Jun 2025 14:35:47 -0700 Subject: Allow themes to theme the UI (#769) --- packages/cli/src/ui/components/Help.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/cli/src/ui/components/Help.tsx') diff --git a/packages/cli/src/ui/components/Help.tsx b/packages/cli/src/ui/components/Help.tsx index 74d03573..92e94a8a 100644 --- a/packages/cli/src/ui/components/Help.tsx +++ b/packages/cli/src/ui/components/Help.tsx @@ -31,7 +31,7 @@ export const Help: React.FC = ({ commands }) => ( {commands .filter((command) => command.description) .map((command: SlashCommand) => ( - + {' '} /{command.name} @@ -39,7 +39,7 @@ export const Help: React.FC = ({ commands }) => ( {command.description && ' - ' + command.description} ))} - + {' '} !{' '} -- cgit v1.2.3