From 5192795d88d09e0b48571c45a7c3ff1253b7c474 Mon Sep 17 00:00:00 2001 From: Jordi Bueno Date: Tue, 26 Jul 2022 15:27:23 +0200 Subject: [PATCH] Remove not supported fragments --- components/x-gift-article/src/Form.jsx | 4 +- .../x-gift-article/src/ReferAFriend.jsx | 58 +++++++++---------- 2 files changed, 30 insertions(+), 32 deletions(-) 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}

+
+ + + +
+
- +
) }