This commit is contained in:
2025-07-10 14:44:39 +03:00
parent 8e82736f09
commit 6368a5b5ff

View File

@@ -44,7 +44,7 @@ export const getRegion = async (countryCode: string) => {
} }
const regions = await listRegions() const regions = await listRegions()
console.log("regions", regions)
if (!regions) { if (!regions) {
return null return null
} }
@@ -57,7 +57,7 @@ export const getRegion = async (countryCode: string) => {
const region = countryCode const region = countryCode
? regionMap.get(countryCode) ? regionMap.get(countryCode)
: regionMap.get("us") : regionMap.get("et")
return region return region
} catch (e: any) { } catch (e: any) {