diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-25 23:52:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 23:52:12 -0700 |
commit | 2b69bf6f1fc2e06b16b718358ceed4911d6e87c3 (patch) | |
tree | c27c630c64f2890698512606e2dd8acac9c0c8b6 /extension/react-app/src | |
parent | f0df0fdc1fb7d8e65e27abe633da1831b8172b35 (diff) | |
parent | 03da423e5abdf32c5bf9755ffd2e1c7be98e6454 (diff) | |
download | sncontinue-2b69bf6f1fc2e06b16b718358ceed4911d6e87c3.tar.gz sncontinue-2b69bf6f1fc2e06b16b718358ceed4911d6e87c3.tar.bz2 sncontinue-2b69bf6f1fc2e06b16b718358ceed4911d6e87c3.zip |
Merge pull request #296 from continuedev/config-py-2
Config py 2
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( |