From 36c3c4994964142a29dccee8d54669f1c3ebdd4d Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Thu, 16 Jul 2026 23:48:48 +1000 Subject: [PATCH] fix(desktop): sentence-case runtime descriptions in onboarding setup (#1944) Signed-off-by: Matt Toohey Co-authored-by: Claude Fable 5 --- desktop/src/features/onboarding/ui/SetupStep.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/desktop/src/features/onboarding/ui/SetupStep.tsx b/desktop/src/features/onboarding/ui/SetupStep.tsx index bd59f0124..f99feff3f 100644 --- a/desktop/src/features/onboarding/ui/SetupStep.tsx +++ b/desktop/src/features/onboarding/ui/SetupStep.tsx @@ -325,10 +325,14 @@ function RuntimeDetails({ runtime }: { runtime: AcpRuntimeCatalogEntry }) { runtime.command && runtime.binaryPath ) { + const description = describeResolvedCommand( + runtime.command, + runtime.binaryPath, + ); return ( <>

- {describeResolvedCommand(runtime.command, runtime.binaryPath)} + {description.charAt(0).toUpperCase() + description.slice(1)}

{runtime.defaultArgs.length > 0 ? (