From 9adbeea0351b2620c3e569c8e9f8a49c6f769434 Mon Sep 17 00:00:00 2001 From: alejandrobailo Date: Tue, 24 Feb 2026 12:04:42 +0100 Subject: [PATCH] fix(ui): use design tokens in wizard stepper --- ui/components/providers/wizard/wizard-stepper.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ui/components/providers/wizard/wizard-stepper.tsx b/ui/components/providers/wizard/wizard-stepper.tsx index 2ae67291ee..44039becec 100644 --- a/ui/components/providers/wizard/wizard-stepper.tsx +++ b/ui/components/providers/wizard/wizard-stepper.tsx @@ -76,14 +76,14 @@ export function WizardStepper({ {step.label} -

+

{step.description}

@@ -111,15 +111,15 @@ function StepCircle({ isComplete, isActive, icon: Icon }: StepCircleProps) { if (isActive) { return ( -
+
); } return ( -
- +
+
); }