Skip to content

Commit e073bda

Browse files
Remove region for AA call, actually not helpful (#8992)
1 parent 73d7281 commit e073bda

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/state/ageAssurance/useInitAgeAssurance.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ function createISOCountryCode(
4242
countryCode: string
4343
},
4444
): string {
45-
if (geolocation.regionCode) {
46-
return `${geolocation.countryCode}-${geolocation.regionCode}`.toUpperCase()
47-
} else {
48-
return geolocation.countryCode.toUpperCase()
49-
}
45+
return geolocation.countryCode.toUpperCase()
5046
}
5147

5248
export function useInitAgeAssurance() {

0 commit comments

Comments
 (0)