@thecb/components 10.8.1 → 10.8.2
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/dist/index.cjs.js +1 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/payment-details/PaymentDetails.js +1 -2
- package/src/components/molecules/payment-details/PaymentDetails.stories.js +0 -1
- package/src/components/atoms/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -260,7 +260,6 @@ const PaymentDetails = ({
|
|
|
260
260
|
// end partial void section
|
|
261
261
|
isLoading = false,
|
|
262
262
|
isError = false,
|
|
263
|
-
multiCartEnabled = false,
|
|
264
263
|
agencyDisplayName
|
|
265
264
|
}) => {
|
|
266
265
|
const [isOpen, setIsOpen] = useState(initiallyOpen);
|
|
@@ -292,7 +291,7 @@ const PaymentDetails = ({
|
|
|
292
291
|
));
|
|
293
292
|
const agencySubheading = (
|
|
294
293
|
<>
|
|
295
|
-
{
|
|
294
|
+
{agencyDisplayName && (
|
|
296
295
|
<Cluster
|
|
297
296
|
justify="space-between"
|
|
298
297
|
align="center"
|
|
@@ -160,7 +160,6 @@ export const paymentDetails = () => (
|
|
|
160
160
|
collapsibleOnMobile={boolean("collapsibleOnMobile", false, "props")}
|
|
161
161
|
initiallyOpen={boolean("initiallyOpen", true, "props")}
|
|
162
162
|
hideTitle={boolean("hideTitle", false, "props")}
|
|
163
|
-
multiCartEnabled={true}
|
|
164
163
|
agencyDisplayName="Office of Charitable Trust"
|
|
165
164
|
/>
|
|
166
165
|
);
|
|
Binary file
|