minor fixes to region domain and api (#7042)

This commit is contained in:
Kasper Fabricius Kristensen
2024-04-09 18:46:53 +02:00
committed by GitHub
parent f175cac4af
commit 276278cbe7
7 changed files with 25 additions and 22 deletions
@@ -13,6 +13,6 @@ export const formatProvider = (id: string) => {
name
.split("-")
.map((s) => s.charAt(0).toUpperCase() + s.slice(1))
.join(" ") + (type ? ` (${type})` : "")
.join(" ") + (type ? ` (${type.toUpperCase()})` : "")
)
}