From 9757d20e6f1cf3a9c29b34f6296e214dd631ef77 Mon Sep 17 00:00:00 2001 From: newick Date: Thu, 26 Sep 2019 16:38:49 +0200 Subject: [PATCH] fix(ContributorButton): changes subscribed and not subscribed display --- src/components/organisms/Contributor/ContributorButton.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/organisms/Contributor/ContributorButton.tsx b/src/components/organisms/Contributor/ContributorButton.tsx index 89c468187..c9c0595dc 100644 --- a/src/components/organisms/Contributor/ContributorButton.tsx +++ b/src/components/organisms/Contributor/ContributorButton.tsx @@ -25,11 +25,9 @@ const ContributorButton = ({ onUnsubscribe }: Props) => ( - {subscribed && ( - Abonné - )} + {subscribed && Abonné} {!subscribed && ( - S'abonner + S'abonner )} );