diff options
author | Eric Bailey <git@esb.lol> | 2025-09-05 11:07:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-05 11:07:37 -0500 |
commit | e073bdac6efec7f20a85bfcaffef11e0210d7b5b (patch) | |
tree | f8531edf836ffd52c3bc8eb06c2eec8a91f93aa7 /src | |
parent | 73d72814c5c65f6302f9ab114b1f6414bc107eb0 (diff) | |
download | voidsky-e073bdac6efec7f20a85bfcaffef11e0210d7b5b.tar.zst |
Remove region for AA call, actually not helpful (#8992)
Diffstat (limited to 'src')
-rw-r--r-- | src/state/ageAssurance/useInitAgeAssurance.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/state/ageAssurance/useInitAgeAssurance.ts b/src/state/ageAssurance/useInitAgeAssurance.ts index 59a0fb79b..b658afb89 100644 --- a/src/state/ageAssurance/useInitAgeAssurance.ts +++ b/src/state/ageAssurance/useInitAgeAssurance.ts @@ -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() { |