From 3f27b23d5acfef04b972e249aee6788209b47d3d Mon Sep 17 00:00:00 2001 From: Benjamin Jesuiter Date: Sun, 11 Jan 2026 01:21:39 +0100 Subject: [PATCH] fix(update): remove command hint from step labels --- src/cli/update-cli.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cli/update-cli.ts b/src/cli/update-cli.ts index febda8a07..8b3eb6eb9 100644 --- a/src/cli/update-cli.ts +++ b/src/cli/update-cli.ts @@ -31,8 +31,7 @@ const STEP_LABELS: Record = { }; function getStepLabel(step: UpdateStepInfo): string { - const friendlyLabel = STEP_LABELS[step.name] ?? step.name; - return `${friendlyLabel} (${step.name})`; + return STEP_LABELS[step.name] ?? step.name; } type ProgressController = {