From 2fd7f65831ffb16a8e3235cd85ebc399953e896a Mon Sep 17 00:00:00 2001 From: Frikky Date: Fri, 20 Dec 2024 23:25:33 +0200 Subject: [PATCH] Fixed regions --- frontend/src/components/LeftSideBar.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/LeftSideBar.jsx b/frontend/src/components/LeftSideBar.jsx index def8d23c..3ceea0e8 100644 --- a/frontend/src/components/LeftSideBar.jsx +++ b/frontend/src/components/LeftSideBar.jsx @@ -662,7 +662,8 @@ useEffect(() => { }; const getRegionTag = (region_url) => { - let regiontag = "UK"; + //let regiontag = "UK"; + let regiontag = "EU"; if ( region_url !== undefined && region_url !== null && @@ -676,7 +677,7 @@ useEffect(() => { if (regiontag === "california") { regiontag = "US"; } else if (regiontag === "frankfurt") { - regiontag = "EU"; + regiontag = "EU-2"; } else if (regiontag === "ca"){ regiontag = "CA"; }