From 348bdcaaa9ae1a8e8cef970dba5140ffc08fee47 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Wed, 23 Apr 2025 16:52:01 +0100 Subject: [PATCH] Add missing data in posthog --- apps/web/src/trpc/routers/auth.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/trpc/routers/auth.ts b/apps/web/src/trpc/routers/auth.ts index 750e39216..4dcf89d8c 100644 --- a/apps/web/src/trpc/routers/auth.ts +++ b/apps/web/src/trpc/routers/auth.ts @@ -143,6 +143,9 @@ export const auth = router({ name: user.name, timeZone: input.timeZone, locale: input.locale, + tier: "hobby", + weekStart: input.weekStart, + timeFormat: input.timeFormat, }, }, });