From d5dedd4765dfcca0c9963f5e0164c12beae7a30f Mon Sep 17 00:00:00 2001 From: Djordje Vlaisavljevic Date: Fri, 19 Aug 2022 14:40:35 +0200 Subject: [PATCH] Updated subscription info for users on free trial refs https://github.com/TryGhost/Team/issues/1724 --- ghost/portal/src/components/pages/AccountHomePage.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ghost/portal/src/components/pages/AccountHomePage.js b/ghost/portal/src/components/pages/AccountHomePage.js index 6da8ec7641..8f1deec1bb 100644 --- a/ghost/portal/src/components/pages/AccountHomePage.js +++ b/ghost/portal/src/components/pages/AccountHomePage.js @@ -477,6 +477,15 @@ const AccountWelcome = () => { if (subscription?.cancel_at_period_end) { return null; } + + if (subscriptionHasFreeTrial({sub: subscription})) { + const trialEnd = getDateString(subscription.trial_end_at); + return ( +
+

Your subscription will start on {trialEnd}

+
+ ); + } return (

Your subscription will renew on {getDateString(currentPeriodEnd)}