@thecb/components 5.8.2-beta.3 → 5.8.2-beta.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "5.8.2-beta.3",
3
+ "version": "5.8.2-beta.4",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -116,6 +116,7 @@ const Obligation = ({
116
116
  isMobile={isMobile}
117
117
  isPaymentPlan={isPaymentPlan}
118
118
  nextAutopayDate={nextAutopayDate}
119
+ obligationAssocID={obligationAssocID}
119
120
  />
120
121
  )}
121
122
  </Stack>
@@ -135,6 +136,7 @@ const Obligation = ({
135
136
  isMobile={isMobile}
136
137
  isPaymentPlan={isPaymentPlan}
137
138
  nextAutopayDate={nextAutopayDate}
139
+ obligationAssocID={obligationAssocID}
138
140
  />
139
141
  )}
140
142
  </Box>
@@ -18,7 +18,8 @@ const PaymentDetailsActions = ({
18
18
  autoPaySchedule,
19
19
  paymentPlanSchedule,
20
20
  isPaymentPlan,
21
- nextAutopayDate
21
+ nextAutopayDate,
22
+ obligationAssocID
22
23
  }) => {
23
24
  const planType = isPaymentPlan ? "Payment Plan" : "Autopay";
24
25
  const [isLoading, setIsLoading] = useState(false);
@@ -38,7 +39,7 @@ const PaymentDetailsActions = ({
38
39
  createPaymentFromProfile(obligations, config);
39
40
  };
40
41
  const handleDetailsClick = () => {
41
- setDetailedObligation(obligations, config);
42
+ setDetailedObligation(obligations, config, obligationAssocID);
42
43
  navigateToDetailedObligation(detailsSlug);
43
44
  };
44
45
  return (