From 77d841cb628b7c15ab4d78b4aec600844f04cb9c Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Fri, 26 Dec 2025 02:34:24 +0200 Subject: [PATCH] refactor: simplify update overlay UI and replace loading icon with logo --- .../src/components/ui/ConfigUpdateOverlay.tsx | 23 +++++-------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/packages/ui/src/components/ui/ConfigUpdateOverlay.tsx b/packages/ui/src/components/ui/ConfigUpdateOverlay.tsx index 029537d9..07b4ee29 100644 --- a/packages/ui/src/components/ui/ConfigUpdateOverlay.tsx +++ b/packages/ui/src/components/ui/ConfigUpdateOverlay.tsx @@ -3,7 +3,7 @@ import { getConfigUpdateSnapshot, subscribeConfigUpdate, } from "@/lib/configUpdate"; -import { RiRestartLine } from '@remixicon/react'; +import { OpenChamberLogo } from "./OpenChamberLogo"; export const ConfigUpdateOverlay: React.FC = () => { const [{ isUpdating, message }, setState] = React.useState(() => getConfigUpdateSnapshot()); @@ -17,22 +17,11 @@ export const ConfigUpdateOverlay: React.FC = () => { } return ( -
-
-
-
- -
-
-

- Updating OpenCode -

-

- {message} -

-
-
-
+
+ +

+ {message} +

); };