From f169a40c6980ddf70d64a58dc7eaf7d747e9ee90 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 3 Sep 2025 08:30:57 +0200 Subject: [PATCH] ui/install: fix onClose not called --- .../clan-app/ui/src/workflows/InstallMachine/InstallMachine.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-app/ui/src/workflows/InstallMachine/InstallMachine.tsx b/pkgs/clan-app/ui/src/workflows/InstallMachine/InstallMachine.tsx index c48434a44..dc73de69d 100644 --- a/pkgs/clan-app/ui/src/workflows/InstallMachine/InstallMachine.tsx +++ b/pkgs/clan-app/ui/src/workflows/InstallMachine/InstallMachine.tsx @@ -122,7 +122,7 @@ export const InstallModal = (props: InstallModalProps) => { // @ts-expect-error some steps might not have disablePadding={stepper.currentStep()?.isSplash} > - props.onClose} /> + props.onClose?.()} /> );