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( - + {/* */} - + {/* */} );