From 50c82c2ba3ea679b622d6b4c412bea2f58109bc8 Mon Sep 17 00:00:00 2001 From: Anand Pant Date: Sun, 8 Mar 2026 04:04:42 -0500 Subject: [PATCH] fix: stabilize setup tui rendering --- src/setup-ui.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/setup-ui.tsx b/src/setup-ui.tsx index 4629869..6c086fb 100644 --- a/src/setup-ui.tsx +++ b/src/setup-ui.tsx @@ -482,9 +482,8 @@ function SetupWizard(props: { backgroundColor="#12202b" > - sandcode + sandcode - {" "} Daytona research, OpenCode sandboxes, and a setup flow worth reusing. @@ -547,7 +546,7 @@ function SetupWizard(props: { {(stepAccessor) => ( - <> + {stepAccessor().eyebrow} {stepAccessor().title} @@ -582,13 +581,13 @@ function SetupWizard(props: { }); }} /> - + )} {(stepAccessor) => ( - <> + {stepAccessor().eyebrow} {stepAccessor().title} @@ -630,7 +629,7 @@ function SetupWizard(props: { } }} /> - + )} @@ -724,7 +723,7 @@ export async function runSetupTui( context: SetupContext, initialState: SetupState, ): Promise { - const renderer = await createCliRenderer(); + const renderer = await createCliRenderer({ useMouse: false }); return await new Promise((resolve, reject) => { let settled = false;