Explorar el Código

fix: fix typo "admin_email"

Aceix hace 1 año
padre
commit
117c8ba1f1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      logic/telemetry.go

+ 1 - 1
logic/telemetry.go

@@ -74,7 +74,7 @@ func sendTelemetry() error {
 			Set("is_pro_trial", d.IsProTrial).
 			Set("pro_trial_end_date", d.ProTrialEndDate.In(time.UTC).Format("2006-01-02")).
 			Set("admin_email", adminEmail).
-			Set("email", adminEmail). // needed for posthog intgration with hubspot. "admin_admin" can only be removed if not used in posthog
+			Set("email", adminEmail). // needed for posthog intgration with hubspot. "admin_email" can only be removed if not used in posthog
 			Set("is_saas_tenant", d.IsSaasTenant),
 	})
 }