Remove region for AA call, actually not helpful (#8992)

This commit is contained in:
Eric Bailey
2025-09-05 11:07:37 -05:00
committed by GitHub
parent 73d72814c5
commit e073bdac6e
@@ -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() {