diff --git a/packages/core/helper-plugin/lib/src/hooks/useTracking/index.js b/packages/core/helper-plugin/lib/src/hooks/useTracking/index.js index 4b88af34f2..5fe886651c 100644 --- a/packages/core/helper-plugin/lib/src/hooks/useTracking/index.js +++ b/packages/core/helper-plugin/lib/src/hooks/useTracking/index.js @@ -14,17 +14,17 @@ const useTracking = () => { trackRef.current = (event, properties) => { if (uuid) { try { - axios.post('http://localhost:4000/track', { + axios.post('https://analytics.strapi.io/track', { event, + adminUserId, deviceId, properties: { ...telemetryProperties, ...properties, projectType: strapi.projectType, environment: appInfo.currentEnvironment, - uuid, + projectId: uuid, }, - adminUserId, }); } catch (err) { // Silent