diff options
Diffstat (limited to 'extension/react-app/src')
| -rw-r--r-- | extension/react-app/src/main.tsx | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/extension/react-app/src/main.tsx b/extension/react-app/src/main.tsx index a76bced6..1776490c 100644 --- a/extension/react-app/src/main.tsx +++ b/extension/react-app/src/main.tsx @@ -8,12 +8,11 @@ import "./index.css";  import posthog from "posthog-js";  import { PostHogProvider } from "posthog-js/react"; +console.log("Starting React"); +  posthog.init("phc_JS6XFROuNbhJtVCEdTSYk6gl5ArRrTNMpCcguAXlSPs", {    api_host: "https://app.posthog.com", -  session_recording: { -    // WARNING: Only enable this if you understand the security implications -    recordCrossOriginIframes: true, -  } as any, +  disable_session_recording: true,  });  ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( | 
