fix(update): remove command hint from step labels

This commit is contained in:
Benjamin Jesuiter
2026-01-11 01:21:39 +01:00
committed by Peter Steinberger
parent 4102e2f1b8
commit 3f27b23d5a

View File

@@ -31,8 +31,7 @@ const STEP_LABELS: Record<string, string> = {
};
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 = {