fix customization shop display on mobile

This commit is contained in:
Phillip Thelen
2024-04-29 10:35:50 +02:00
parent f05888b116
commit 4c2cdfe5b8
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -8,6 +8,7 @@
"gotIt": "Got it!",
"titleTimeTravelers": "Time Travelers",
"titleSeasonalShop": "Seasonal Shop",
"titleCustomizations": "Customizations",
"saveEdits": "Save Edits",
"showMore": "Show More",
"showLess": "Show Less",
+1
View File
@@ -28,6 +28,7 @@
"worldBossEvent": "World Boss Event",
"worldBossDescription": "World Boss Description",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
"customizationsShopText": "Want to change up your style? You came to the right place! We stock the freshest looks to fit the season.",
"howManyToSell": "How many would you like to sell?",
"yourBalance": "Your balance:",
"sell": "Sell",
+2 -2
View File
@@ -557,8 +557,8 @@ shops.getCustomizationsShop = function getCustomizationsShop (user, language) {
return {
identifier: 'customizationsShop',
text: i18n.t('titleCustomizations'),
notes: i18n.t('timeTravelersPopover'),
imageName: 'npc_timetravelers_active',
notes: i18n.t('customizationsShopText'),
imageName: 'npc_customizations',
categories: shops.getCustomizationsShopCategories(user, language),
};
};