From f5eb13f66fdc5a99ffea4be2fab6b2f247be1f31 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Tue, 7 Oct 2025 18:47:36 +0530 Subject: [PATCH] [WEB-5086] fix: instance setup screen asset #7914 --- apps/web/core/components/instance/not-ready-view.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/web/core/components/instance/not-ready-view.tsx b/apps/web/core/components/instance/not-ready-view.tsx index 1313c3e0d..a3f536c3b 100644 --- a/apps/web/core/components/instance/not-ready-view.tsx +++ b/apps/web/core/components/instance/not-ready-view.tsx @@ -5,29 +5,26 @@ import Image from "next/image"; import Link from "next/link"; import { useTheme } from "next-themes"; import { GOD_MODE_URL } from "@plane/constants"; +import { PlaneLockup } from "@plane/propel/icons"; import { Button } from "@plane/propel/button"; // helpers // images // assets import PlaneBackgroundPatternDark from "@/public/auth/background-pattern-dark.svg"; import PlaneBackgroundPattern from "@/public/auth/background-pattern.svg"; -import BlackHorizontalLogo from "@/public/plane-logos/black-horizontal-with-blue-logo.png"; -import WhiteHorizontalLogo from "@/public/plane-logos/white-horizontal-with-blue-logo.png"; import PlaneTakeOffImage from "@/public/plane-takeoff.png"; export const InstanceNotReady: FC = () => { const { resolvedTheme } = useTheme(); const patternBackground = resolvedTheme === "dark" ? PlaneBackgroundPatternDark : PlaneBackgroundPattern; - const logo = resolvedTheme === "light" ? BlackHorizontalLogo : WhiteHorizontalLogo; - return (