From 7d9b3e26a60fe884916207029da26769a8f01563 Mon Sep 17 00:00:00 2001 From: Ho Duc Hieu <150573299+hieu-jan@users.noreply.github.com> Date: Fri, 29 Dec 2023 21:32:16 +0700 Subject: [PATCH] fix: change properties name --- web/utils/posthog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/utils/posthog.ts b/web/utils/posthog.ts index 2010825da..c334decbe 100644 --- a/web/utils/posthog.ts +++ b/web/utils/posthog.ts @@ -27,7 +27,7 @@ function getOperatingSystem(): string { // Function to capture app version and operating system function captureAppVersionAndOS() { const properties: Properties = { - JanVersion: VERSION, + appVersion: VERSION, userOperatingSystem: getOperatingSystem(), } posthog.capture(AnalyticsEvent.Ping, properties)