diff --git a/client/src/App/App.container.jsx b/client/src/App/App.container.jsx index d4498f779..409329ee6 100644 --- a/client/src/App/App.container.jsx +++ b/client/src/App/App.container.jsx @@ -11,15 +11,15 @@ import App from "./App"; import trackerGraphQL from "@openreplay/tracker-graphql"; //import trackerRedux from "@openreplay/tracker-redux"; import Tracker from "@openreplay/tracker"; -//import trackerAssist from "@openreplay/tracker-assist"; +import trackerAssist from "@openreplay/tracker-assist"; moment.locale("en-US"); export const tracker = new Tracker({ - projectKey: "FPjeYIbwJyvhrVVTTLHo", - ingestPoint: "https://replay.bodyshop.app/ingest", - // ...(process.env.NODE_ENV === null || process.env.NODE_ENV === "development" - // ? { __DISABLE_SECURE_MODE: true } - // : {}), + projectKey: "trDmOZlEXUpjGsMtHroA", + ingestPoint: "https://replay.imex.online/ingest", + ...(process.env.NODE_ENV === null || process.env.NODE_ENV === "development" + ? { __DISABLE_SECURE_MODE: true } + : {}), // beaconSize: 10485760, onStart: ({ sessionID }) => console.log( @@ -27,7 +27,10 @@ export const tracker = new Tracker({ sessionID ), }); -//tracker.use(trackerAssist({ confirmText: "Confimr hep" })); // check the list of available options below + +tracker.use( + trackerAssist({ confirmText: "Technical support is about to assist you." }) +); // check the list of available options below export const recordGraphQL = tracker.use(trackerGraphQL()); tracker.start(); if (process.env.NODE_ENV === "production") LogRocket.init("gvfvfw/bodyshopapp");