Merge dev.

This commit is contained in:
Mike Cao
2025-04-28 20:09:58 -07:00
88 changed files with 4120 additions and 21010 deletions

View File

@@ -27,8 +27,8 @@ export function useFormat() {
return countryNames[value] || value;
};
const formatRegion = (value: string): string => {
const [country] = value.split('-');
const formatRegion = (value?: string): string => {
const [country] = value?.split('-') || [];
return regions[value] ? `${regions[value]}, ${countryNames[country]}` : value;
};