From c9577b2bb20b30dbe1fa9d80dfe9816e6ce0dc77 Mon Sep 17 00:00:00 2001 From: Seth Call Date: Thu, 3 Dec 2020 16:53:39 -0600 Subject: [PATCH] fix hardcoded gold --- .../react-components/CurrentSubscription.js.jsx.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/assets/javascripts/react-components/CurrentSubscription.js.jsx.coffee b/web/app/assets/javascripts/react-components/CurrentSubscription.js.jsx.coffee index bcf0459ca..b4454f560 100644 --- a/web/app/assets/javascripts/react-components/CurrentSubscription.js.jsx.coffee +++ b/web/app/assets/javascripts/react-components/CurrentSubscription.js.jsx.coffee @@ -192,7 +192,7 @@ AppStore = context.AppStore warning = `

You will drop to the Free free plan after the trial ends because you have not yet entered payment info or selected a plan.

` show_payment_info = true - explanation = `You have a Gold account until your trial ends {context.JK.formatDateShort(this.props.subscription.trial_ends_at)}. {note}` + explanation = `You have a {effective_plan_name} account until your trial ends {context.JK.formatDateShort(this.props.subscription.trial_ends_at)}. {note}` else if @props.subscription.desired_plan_code && !@props.subscription.plan_code && !has_billing_info explanation = `You have successfully upgraded your plan to the {desired_plan_name} level, thank you!`