From 0a9997e98a553a845f47d90928daa3b11b915008 Mon Sep 17 00:00:00 2001 From: DanielS Date: Fri, 10 Jul 2026 11:18:40 +0200 Subject: [PATCH] style(wizard): show numbers instead of check icons in progress stepper --- shop/components/order-wizard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shop/components/order-wizard.tsx b/shop/components/order-wizard.tsx index 41b7252..87c9def 100644 --- a/shop/components/order-wizard.tsx +++ b/shop/components/order-wizard.tsx @@ -715,7 +715,7 @@ export function OrderWizard({ : 'bg-slate-800 text-slate-400' }`} > - {step > s ? : s} + {s} = s ? 'text-primary' : 'text-slate-500'}`}> {s === 1 ? 'Kunde' : s === 2 ? 'Modell' : s === 3 ? 'Software' : 'Abschluss'} @@ -1039,7 +1039,7 @@ export function OrderWizard({ : 'bg-slate-800 text-slate-400' }`} > - {step > s ? : s} + {s} = s ? 'text-primary' : 'text-slate-500'}`}> {s === 1 ? 'Kunde' : s === 2 ? 'Modell' : s === 3 ? 'Software' : 'Abschluss'}