We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab67e21 + 6b1cb3b commit 500db3cCopy full SHA for 500db3c
frontend/src/pages/Onboarding.tsx
@@ -321,6 +321,18 @@ export const Onboarding = () => {
321
322
const organization = await createOrgResponse.json();
323
324
+ // Track successful org creation
325
+ posthog.capture('onboarding_completed', {
326
+ org_id: organization.id,
327
+ org_name: formData.organizationName,
328
+ subscription_plan: formData.subscriptionPlan,
329
+ billing_period: billingPeriod,
330
+ team_members_invited: teamMembers.length,
331
+ org_size: formData.organizationSize,
332
+ user_role: formData.userRole,
333
+ org_type: formData.organizationType,
334
+ });
335
+
336
// Step 2: Update organization context
337
setCurrentOrganization(organization);
338
0 commit comments