From e2f64e1d40150cb54e8dc9b71285762fd1d8d509 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Thu, 28 Aug 2025 10:10:52 +0200 Subject: [PATCH] ui/stepper: forward props in backButton --- pkgs/clan-app/ui/src/workflows/Steps.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-app/ui/src/workflows/Steps.tsx b/pkgs/clan-app/ui/src/workflows/Steps.tsx index c0ff851be..ba25778fd 100644 --- a/pkgs/clan-app/ui/src/workflows/Steps.tsx +++ b/pkgs/clan-app/ui/src/workflows/Steps.tsx @@ -35,7 +35,8 @@ export const NextButton = (props: NextButtonProps) => { ); }; -export const BackButton = () => { +type BackButtonProps = ButtonProps & {}; +export const BackButton = (props: BackButtonProps) => { const stepSignal = useStepper(); return ( ); };