chore: format code

This commit is contained in:
GitHub Action
2025-11-24 18:40:01 +00:00
parent 82ebf66cba
commit 8167e90801
2 changed files with 108 additions and 163 deletions
@@ -1,6 +1,6 @@
import { BoxRenderable, TextareaRenderable, MouseEvent, PasteEvent, t, dim, fg, type KeyBinding } from "@opentui/core"
import { createEffect, createMemo, type JSX, onMount, createSignal, onCleanup, Show, Switch, Match } from "solid-js"
import "opentui-spinner/solid";
import "opentui-spinner/solid"
import { useLocal } from "@tui/context/local"
import { useTheme } from "@tui/context/theme"
import { EmptyBorder } from "@tui/component/border"
@@ -830,11 +830,7 @@ export function Prompt(props: PromptProps) {
justifyContent={status().type === "retry" ? "space-between" : "flex-start"}
>
<box flexShrink={0} flexDirection="row" gap={1}>
<spinner
color={spinnerDef().color}
frames={spinnerDef().frames}
interval={40}
/>
<spinner color={spinnerDef().color} frames={spinnerDef().frames} interval={40} />
<box flexDirection="row" gap={1} flexShrink={0}>
{(() => {
const retry = createMemo(() => {
@@ -904,4 +900,3 @@ export function Prompt(props: PromptProps) {
</>
)
}