From 19ac488b57dfa6410df0e367c7793c9c913d4afe Mon Sep 17 00:00:00 2001 From: jochemgravendeel Date: Mon, 16 Sep 2024 13:36:02 +0200 Subject: [PATCH] fix: fix show correct small package price --- src/config/defaultConfiguration.js | 1 + src/sandbox/translations/en.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/config/defaultConfiguration.js b/src/config/defaultConfiguration.js index c68af8c4..792ef106 100644 --- a/src/config/defaultConfiguration.js +++ b/src/config/defaultConfiguration.js @@ -58,6 +58,7 @@ export const defaultConfiguration = (platform = DEFAULT_PLATFORM) => { [CONFIG.PRICE_PACKAGE_TYPE_DIGITAL_STAMP]: DEFAULT_PRICE, [CONFIG.PRICE_PACKAGE_TYPE_MAILBOX]: DEFAULT_PRICE, + [CONFIG.PRICE_PACKAGE_TYPE_PACKAGE_SMALL]: DEFAULT_PRICE, [CONFIG.PRICE_EVENING_DELIVERY]: DEFAULT_PRICE, [CONFIG.PRICE_MORNING_DELIVERY]: DEFAULT_PRICE, diff --git a/src/sandbox/translations/en.js b/src/sandbox/translations/en.js index 96c1ee6f..943ca68a 100644 --- a/src/sandbox/translations/en.js +++ b/src/sandbox/translations/en.js @@ -17,6 +17,7 @@ export const englishTranslations = { 'main.description': 'This sandbox is made to test different configurations of the MyParcel Delivery Options. On the left you can see all possible options. Change the options and see the results reflected on the right immediately. Open the "@:tab.code" tab to get the code you need to use with the Delivery Options. More information on each setting can be found in our API documentation.', 'main.slack_help': ' Do you want to be kept informed of new functionalities or do you need help? You can contact us via Slack.', 'package_types.digital_stamp': 'Digital stamp', + 'package_types.package_small': 'Small parcel', 'package_types.mailbox': 'Mailbox package', 'package_types.package': 'Package', 'pickup_locations.views.list': 'List',