This commit is contained in:
Eric Bailey
2025-12-11 12:17:47 -06:00
parent 7086f1edbf
commit 8926bf83b3
2 changed files with 2 additions and 2 deletions
@@ -69,7 +69,7 @@ export function NoAccessScreen() {
// just counting overall hits here
logger.metric(`blockedGeoOverlay:shown`, {})
logger.metric(`ageAssurance:noAccessScreen:shown`, {
accountCreatedAt: data?.accountCreatedAt,
accountCreatedAt: data?.accountCreatedAt || 'unknown',
isAARegion,
hasDeclaredAge,
canUpdateBirthday,
+1 -1
View File
@@ -607,7 +607,7 @@ export type MetricEvents = {
'ageAssurance:appealDialogOpen': {}
'ageAssurance:appealDialogSubmit': {}
'ageAssurance:noAccessScreen:shown': {
accountCreatedAt?: string
accountCreatedAt: string
isAARegion: boolean
hasDeclaredAge: boolean
canUpdateBirthday: boolean