From 4474a21a4df76862925697f6c3722807c3d09f42 Mon Sep 17 00:00:00 2001 From: Rish Date: Thu, 3 Sep 2020 16:27:35 +0530 Subject: [PATCH] Fixed incorrect usage of class no refs - React expects `class` on elements to be defined as `className` --- ghost/portal/src/components/pages/AccountHomePage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/portal/src/components/pages/AccountHomePage.js b/ghost/portal/src/components/pages/AccountHomePage.js index 68788cba6d..c98ea59657 100644 --- a/ghost/portal/src/components/pages/AccountHomePage.js +++ b/ghost/portal/src/components/pages/AccountHomePage.js @@ -249,7 +249,7 @@ const CancelContinueSubscription = ({member, onAction, action, brandColor, showO } const currentPeriodEnd = subscription.current_period_end; return ( -

+

Your subscription will expire on {getDateString(currentPeriodEnd)}.

);