diff --git a/src/components/modal/v2/parts/CheckoutHeader.jsx b/src/components/modal/v2/parts/CheckoutHeader.jsx index 6de2bc69ff..3ffb65d082 100644 --- a/src/components/modal/v2/parts/CheckoutHeader.jsx +++ b/src/components/modal/v2/parts/CheckoutHeader.jsx @@ -83,14 +83,14 @@ const CheckoutHeader = ({ {isPreapproved === 'true' ? {preapprovalLabel} : ''} {isQualifying === 'true' && qualifyingSubheadline !== '' ? ( -

+

{isPreapproved === 'true' ? preapprovalSubHeadline : qualifyingSubheadline.replace(/(\s?EUR)/g, ' €')}

) : (

{ +const InlineLinks = ({ text, useNewCheckoutDesign }) => { const { onClick } = useXProps(); if (!Array.isArray(text)) { @@ -22,7 +22,8 @@ const InlineLinks = ({ text }) => { // Fallback can be removed after all translations added to the content aria-label={linkLabel ?? `${linkText}, opens new tab.`} target="__blank" - className="inline-link" + // className="inline-link" + className={`inline-link ${useNewCheckoutDesign === 'true' ? 'checkout' : ''}`} href={linkUrl} onClick={() => { onClick({ diff --git a/src/components/modal/v2/parts/views/LongTerm/Content.jsx b/src/components/modal/v2/parts/views/LongTerm/Content.jsx index e888ee0963..33703f6d9b 100644 --- a/src/components/modal/v2/parts/views/LongTerm/Content.jsx +++ b/src/components/modal/v2/parts/views/LongTerm/Content.jsx @@ -184,7 +184,7 @@ export const LongTerm = ({ }`} > {typeof disclosure === 'string' || Array.isArray(disclosure) ? ( - + ) : (