diff --git a/components/x-gift-article/src/Form.jsx b/components/x-gift-article/src/Form.jsx index 7bb89897a..2d511a952 100644 --- a/components/x-gift-article/src/Form.jsx +++ b/components/x-gift-article/src/Form.jsx @@ -39,7 +39,7 @@ export default (props) => ( )} {props.isRafActive && ( - <> +
{props.showRafCopyConfirmation && ( @@ -48,7 +48,7 @@ export default (props) => ( isArticleSharingUxUpdates={props.isArticleSharingUxUpdates} /> )} - +
)} {props.showMobileShareLinks && } diff --git a/components/x-gift-article/src/ReferAFriend.jsx b/components/x-gift-article/src/ReferAFriend.jsx index 5caa0e361..768665c85 100644 --- a/components/x-gift-article/src/ReferAFriend.jsx +++ b/components/x-gift-article/src/ReferAFriend.jsx @@ -3,37 +3,35 @@ import { UrlType } from './lib/constants' export default ({ rafTitle, rafDescription, urls, actions }) => { return ( - <> -
-

{rafTitle}

-

{rafDescription}

-
- - - -
- -
+
+

{rafTitle}

+

{rafDescription}

+
+ + + +
+
- +
) }