(userId: string, email?: string)
| 241 | * Track successful authentication |
| 242 | */ |
| 243 | export function trackAuthCompleted(userId: string, email?: string) { |
| 244 | identify(userId, email ? { email } : undefined) |
| 245 | capture("auth_completed", { |
| 246 | user_id: userId, |
| 247 | }) |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * Track project opened |
no test coverage detected