-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: change checkout limit to 10.000
- Loading branch information
1 parent
41c3335
commit 653e6b7
Showing
6 changed files
with
18 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,16 +15,11 @@ const messagesEn = { | |
'portfolio.smallCheckout.contributionValueCurrency.validation.empty': | ||
'Please enter a value', | ||
'portfolio.smallCheckout.contributionValueCurrency.validation.tooHigh': | ||
'For bigger purchases please contact our sales team via [email protected]', | ||
'For bigger purchases please contact our sales team', | ||
|
||
'portfolio.smallCheckout.contributionValueKgs.label': | ||
'portfolio.smallCheckout.contributionValueTons.label': | ||
'Contribution Amount in Tons', | ||
|
||
'portfolio.smallCheckout.submitButton': 'Buy credits', | ||
|
||
'portfolio.smallCheckout.cta.title': 'Looking to buy more than 10.000 tCO₂?', | ||
'portfolio.smallCheckout.cta.subTitle': | ||
'For enterprise-customers we offer custom solutions. Feel free to contact us.', | ||
'portfolio.smallCheckout.cta.button': 'Contact our Sales Team', | ||
}; | ||
export default messagesEn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const MINIMUM_CONTRIBUTION_VALUE_IN_MONEY = 10; | ||
|
||
export const MAXIMUM_CONTRIBUTION_VALUE_IN_MONEY = 60_000; | ||
export const MAXIMUM_CONTRIBUTION_VALUE_IN_MONEY = 10_000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
interface SmallCheckoutForm { | ||
contributionValueCurrency: string; | ||
contributionValueKgs: string; | ||
contributionValueTons: string; | ||
} | ||
|
||
export default SmallCheckoutForm; |