@thecb/components 10.1.3-beta.4 → 10.1.3-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -39,7 +39,7 @@ const AutopayModal = ({
|
|
|
39
39
|
? "checking account payment method"
|
|
40
40
|
: "payment method";
|
|
41
41
|
|
|
42
|
-
return `To
|
|
42
|
+
return `To set up ${planText} you must have a saved ${methodRequired} and address. Do you want to save these now?`;
|
|
43
43
|
};
|
|
44
44
|
const plan = isPaymentPlan ? "your payment plan" : "autopay";
|
|
45
45
|
const shortPlan = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
@@ -47,7 +47,7 @@ const AutopayModal = ({
|
|
|
47
47
|
description
|
|
48
48
|
)}: ${titleCaseString(subDescription)}`;
|
|
49
49
|
const activateText = titleCaseString(
|
|
50
|
-
`Set Up ${shortPlan} for ${description}: ${subDescription}`
|
|
50
|
+
`Set Up ${shortPlan.toLowerCase()} for ${description}: ${subDescription}`
|
|
51
51
|
);
|
|
52
52
|
const nextDate = dueDate || nextAutopayDate;
|
|
53
53
|
const modalExtraProps = {
|