Compare commits

...

1 Commits

Author SHA1 Message Date
Eric Bailey a48742b061 Remove region for AA call, actually not helpful 2025-09-05 10:59:14 -05:00
@@ -42,11 +42,7 @@ function createISOCountryCode(
countryCode: string
},
): string {
if (geolocation.regionCode) {
return `${geolocation.countryCode}-${geolocation.regionCode}`.toUpperCase()
} else {
return geolocation.countryCode.toUpperCase()
}
return geolocation.countryCode.toUpperCase()
}
export function useInitAgeAssurance() {