Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions src/setup-ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -482,9 +482,8 @@ function SetupWizard(props: {
backgroundColor="#12202b"
>
<text>
<strong fg="#f6d365">sandcode</strong>
<strong fg="#f6d365">sandcode </strong>
<span fg="#8aa5b8">
{" "}
Daytona research, OpenCode sandboxes, and a setup flow worth reusing.
</span>
</text>
Expand Down Expand Up @@ -547,7 +546,7 @@ function SetupWizard(props: {
<box flexDirection="column" gap={1}>
<Show when={activeChoiceStep()}>
{(stepAccessor) => (
<>
<box flexDirection="column" gap={1}>
<text fg="#8fbcd4">{stepAccessor().eyebrow}</text>
<text>
<strong fg="#f6d365">{stepAccessor().title}</strong>
Expand Down Expand Up @@ -582,13 +581,13 @@ function SetupWizard(props: {
});
}}
/>
</>
</box>
)}
</Show>

<Show when={activeInputStep()}>
{(stepAccessor) => (
<>
<box flexDirection="column" gap={1}>
<text fg="#8fbcd4">{stepAccessor().eyebrow}</text>
<text>
<strong fg="#f6d365">{stepAccessor().title}</strong>
Expand Down Expand Up @@ -630,7 +629,7 @@ function SetupWizard(props: {
}
}}
/>
</>
</box>
)}
</Show>
</box>
Expand Down Expand Up @@ -724,7 +723,7 @@ export async function runSetupTui(
context: SetupContext,
initialState: SetupState,
): Promise<SetupResult> {
const renderer = await createCliRenderer();
const renderer = await createCliRenderer({ useMouse: false });

return await new Promise<SetupResult>((resolve, reject) => {
let settled = false;
Expand Down