diff options
| author | David Hill <[email protected]> | 2026-01-17 21:41:01 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-17 21:46:23 +0000 |
| commit | 0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6 (patch) | |
| tree | ca3cb040255a89f8f2787be1f2bea208694dca17 /packages/desktop/src | |
| parent | c3d33562c705445e258648bb0d34e94fea7fe68f (diff) | |
| download | opencode-0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6.tar.gz opencode-0384e6b0e15a4ea033c09da8fd9742f9ead8b8a6.zip | |
fix: update desktop initializing splash logo
Diffstat (limited to 'packages/desktop/src')
| -rw-r--r-- | packages/desktop/src/index.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/desktop/src/index.tsx b/packages/desktop/src/index.tsx index 8398f4577..0d9e38379 100644 --- a/packages/desktop/src/index.tsx +++ b/packages/desktop/src/index.tsx @@ -12,7 +12,7 @@ import { relaunch } from "@tauri-apps/plugin-process" import { AsyncStorage } from "@solid-primitives/storage" import { fetch as tauriFetch } from "@tauri-apps/plugin-http" import { Store } from "@tauri-apps/plugin-store" -import { Logo } from "@opencode-ai/ui/logo" +import { Splash } from "@opencode-ai/ui/logo" import { createSignal, Show, Accessor, JSX, createResource, onMount, onCleanup } from "solid-js" import { UPDATER_ENABLED } from "./updater" @@ -357,8 +357,7 @@ function ServerGate(props: { children: (data: Accessor<ServerReadyData>) => JSX. when={serverData.state !== "pending" && serverData()} fallback={ <div class="h-screen w-screen flex flex-col items-center justify-center bg-background-base"> - <Logo class="w-xl opacity-12 animate-pulse" /> - <div class="mt-8 text-14-regular text-text-weak">Initializing...</div> + <Splash class="w-16 h-20 opacity-50 animate-pulse" /> </div> } > |
