Skip to content

Commit d7542f8

Browse files
committed
update: Affirm minimum amount from 50 to 35
1 parent cbfc976 commit d7542f8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Significance: patch
2+
Type: update
3+
4+
update: Affirm minimum amount from 50 to 35

includes/class-wc-payments-utils.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -734,16 +734,16 @@ public static function get_bnpl_limits_per_currency( $payment_method ) {
734734
return [
735735
Currency_Code::CANADIAN_DOLLAR => [
736736
Country_Code::CANADA => [
737-
'min' => 5000,
737+
'min' => 3500,
738738
'max' => 3000000,
739-
], // Represents CAD 50 - 30,000 CAD.
739+
], // Represents CAD 35 - 30,000 CAD.
740740
],
741741
Currency_Code::UNITED_STATES_DOLLAR => [
742742
Country_Code::UNITED_STATES => [
743-
'min' => 5000,
743+
'min' => 3500,
744744
'max' => 3000000,
745745
],
746-
], // Represents USD 50 - 30,000 USD.
746+
], // Represents USD 35 - 30,000 USD.
747747
];
748748
case 'afterpay_clearpay':
749749
return [

0 commit comments

Comments
 (0)