From 2f4feb41b7da4c729d19ef3ab83146915c01e586 Mon Sep 17 00:00:00 2001 From: puzhen <1303385763@qq.com> Date: Thu, 20 Nov 2025 20:54:22 +0800 Subject: [PATCH] update --- src/components/Layout/index.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index eed4bc7f8..2cb79c5ea 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -9,7 +9,6 @@ import animationData from "@/assets/animation/onboarding_success.json"; import CloseNoticeDialog from "../Dialog/CloseNotice"; import { useInstallationUI } from "@/store/installationStore"; import { useInstallationSetup } from "@/hooks/useInstallationSetup"; -import InstallationErrorDialog from "../InstallStep/InstallationErrorDialog/InstallationErrorDialog"; import Halo from "../Halo"; import useChatStoreAdapter from "@/hooks/useChatStoreAdapter"; @@ -27,11 +26,8 @@ const Layout = () => { const { installationState, - latestLog, - error, isInstalling, shouldShowInstallScreen, - retryInstallation, } = useInstallationUI(); // Setup installation IPC listeners and state synchronization @@ -111,14 +107,6 @@ const Layout = () => { )} - {(error != "" && error !=undefined) && - - } -