Skip to content

Commit

Permalink
Pull request #245: Bugfix/typos fixed
Browse files Browse the repository at this point in the history
Merge in EXC/orca-elements from bugfix/typos_fixed to master

* commit '732802c68af0b74b8e61b6b2e30537f671ac1e0f':
  All typos fixed
  • Loading branch information
Vrishab Srivatsa authored and prafulkoppalkar committed Oct 4, 2023
2 parents 1cf0a22 + 732802c commit a3d9b46
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/LocaleString.res
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ let localeStrings = [
saveCardDetails: "Save card details",
addBankAccount: "Add bank account",
achBankDebitTerms: str =>
`By providing your account number and confirming this payment, you are authorizing ${str} and Hyperswitch, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed withing 8 weeks starting from the date on which your account was debited.`,
`By providing your account number and confirming this payment, you are authorizing ${str} and Hyperswitch, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited.`,
sepaDebitTerms: str =>
`By providing your payment information and confirming this payment, you authorise (A) ${str} and Hyperswitch, our payment service provider and/or PPRO, its local service provider, to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with those instructions. As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited. Your rights are explained in a statement that you can obtain from your bank. You agree to receive notifications for future debits up to 2 days before they occur.`,
becsDebitTerms: `By providing your bank account details and confirming this payment, you agree to this Direct Debit Request and the Direct Debit Request service agreement and authorise Hyperswitch Payments Australia Pty Ltd ACN 160 180 343 Direct Debit User ID number 507156 (“Hyperswitch”) to debit your account through the Bulk Electronic Clearing System (BECS) on behalf of Hyperswitch Payment Widget (the "Merchant") for any amounts separately communicated to you by the Merchant. You certify that you are either an account holder or an authorised signatory on the account listed above.`,
Expand Down Expand Up @@ -273,7 +273,7 @@ let localeStrings = [
saveCardDetails: "Save card details",
addBankAccount: "Add bank account",
achBankDebitTerms: str =>
`By providing your account number and confirming this payment, you are authorizing ${str} and Hyperswitch, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed withing 8 weeks starting from the date on which your account was debited.`,
`By providing your account number and confirming this payment, you are authorizing ${str} and Hyperswitch, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited.`,
sepaDebitTerms: str =>
`By providing your payment information and confirming this payment, you authorise (A) ${str} and Hyperswitch, our payment service provider and/or PPRO, its local service provider, to send instructions to your bank to debit your account and (B) your bank to debit your account in accordance with those instructions. As part of your rights, you are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited. Your rights are explained in a statement that you can obtain from your bank. You agree to receive notifications for future debits up to 2 days before they occur.`,
becsDebitTerms: `By providing your bank account details and confirming this payment, you agree to this Direct Debit Request and the Direct Debit Request service agreement and authorise Hyperswitch Payments Australia Pty Ltd ACN 160 180 343 Direct Debit User ID number 507156 (“Hyperswitch”) to debit your account through the Bulk Electronic Clearing System (BECS) on behalf of Hyperswitch Payment Widget (the "Merchant") for any amounts separately communicated to you by the Merchant. You certify that you are either an account holder or an authorised signatory on the account listed above.`,
Expand Down
2 changes: 1 addition & 1 deletion src/Payments/BankTransfersPopup.res
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ let make = (~transferType) => {
{buttonElement}
</button>
</div>
<div className="Detials pt-5">
<div className="Details pt-5">
{keys
->Js.Array2.map(item =>
<div className="flex px-5 pb-5 justify-between text-sm">
Expand Down
2 changes: 1 addition & 1 deletion src/Payments/KlarnaSDK.res
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let default = (props: props) => {
Utils.handlePostMessage([("fullscreen", false->Js.Json.boolean)])
Utils.postFailedSubmitResponse(
~errortype="confirm_payment_failed",
~message="An unknown error has occured",
~message="An unknown error has occurred",
)
}

Expand Down
4 changes: 2 additions & 2 deletions src/Types/PaymentConfirmTypes.res
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let defaultBacsBankInstruction = {
account_number: "",
account_holder_name: "",
}
type reciever

type bankTransfer = {ach_credit_transfer: achCreditTransfer}
type redirectToUrl = {
returnUrl: string,
Expand Down Expand Up @@ -135,6 +135,6 @@ let itemToObjMapper = dict => {
paymentId: getString(dict, "payment_id", ""),
error_message: getString(dict, "error_message", ""),
payment_method_type: getString(dict, "payment_method_type", ""),
manualRetryAllowed: getBool(dict, "manual_retry_allowed", false)
manualRetryAllowed: getBool(dict, "manual_retry_allowed", false),
}
}

0 comments on commit a3d9b46

Please sign in to comment.