revamp: order train picker

This commit is contained in:
2025-02-07 00:11:34 +01:00
parent fab3cef1f3
commit b69c44c55a
9 changed files with 163 additions and 138 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';
}
};