From f14bfd2d75ff092e2ef85a199405dd35888424c1 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 13 Sep 2024 04:34:47 -0700 Subject: [PATCH] logo placed instead of Melty text issue#53 --- .../spectacular/webview-ui/src/components/NavBar.tsx | 2 +- extensions/spectacular/webview-ui/src/index.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/extensions/spectacular/webview-ui/src/components/NavBar.tsx b/extensions/spectacular/webview-ui/src/components/NavBar.tsx index 587b5ba2..178d2a94 100644 --- a/extensions/spectacular/webview-ui/src/components/NavBar.tsx +++ b/extensions/spectacular/webview-ui/src/components/NavBar.tsx @@ -23,7 +23,7 @@ export const NavBar: React.FC = () => {
  • - melty + logo

  • diff --git a/extensions/spectacular/webview-ui/src/index.tsx b/extensions/spectacular/webview-ui/src/index.tsx index e3086d0c..8c53bdad 100644 --- a/extensions/spectacular/webview-ui/src/index.tsx +++ b/extensions/spectacular/webview-ui/src/index.tsx @@ -4,7 +4,7 @@ import App from "./App"; import posthog from "posthog-js"; import { PostHogProvider } from "posthog-js/react"; -if (typeof window !== "undefined") { +// if (typeof window !== "undefined") { // posthog init for frontend posthog.init("phc_tvdsIv2ZDXVeJfYm0GTEBFwaPtdmWRa2cNVGCg18Qt6", { api_host: @@ -13,14 +13,14 @@ if (typeof window !== "undefined") { if (import.meta.env.NODE_ENV === "development") posthog.debug(); }, }); -} +// } const container = document.getElementById('root'); const root = createRoot(container!); root.render( - + {/* */} - + {/* */} );