diff --git a/web/lib/service/analytics.ts b/web/lib/service/analytics.ts index 7ebc2495..780d9ba4 100644 --- a/web/lib/service/analytics.ts +++ b/web/lib/service/analytics.ts @@ -42,5 +42,5 @@ export async function setUserProperty(property: string, value: string) { const identifyObj = new Identify() identifyObj.set(property, value) await identify(identifyObj) - Sprig.setAttributes(identifyObj) + Sprig.setAttributes({ [property]: value }) }