chore: added outdated data indicator

This commit is contained in:
2025-01-27 19:13:31 +01:00
parent 8c7ffc7913
commit 0174ddb8ab
5 changed files with 212 additions and 173 deletions
+21
View File
@@ -0,0 +1,21 @@
export const getRegionNameById = (id: string) => {
switch (id) {
case 'eu':
return 'PL1';
case 'cae':
return 'PL2';
case 'us':
return 'CZE';
case 'usw':
return 'DE';
case 'ru':
return 'ENG';
default:
return 'PL1';
}
};