diff --git a/src/telemetry.js b/src/telemetry.js index ae02788..300f2f7 100644 --- a/src/telemetry.js +++ b/src/telemetry.js @@ -32,16 +32,17 @@ function getOrCreateUUID() { // Send Test Signals when running locally function init() { + const appId = "E453AAB8-B1AD-4F3E-87DF-97FC3A0400B9"; if (location.hostname === "localhost" || location.hostname === "127.0.0.1") { const td = new TelemetryDeck({ - appID: '4A88C6F5-2BDE-489E-9834-34D89FD5473F', + appID: appId, clientUser: getOrCreateUUID(), testMode: true }); return td; } else { const td = new TelemetryDeck({ - appID: '4A88C6F5-2BDE-489E-9834-34D89FD5473F', + appID: appId, clientUser: getOrCreateUUID() }); return td;