fix(subscription): Change copy to be less confusing

This commit is contained in:
Jackie Luo 2016-06-16 12:23:06 -07:00
parent 7004bf94ce
commit a04c1f4224

View file

@ -110,8 +110,8 @@ class PreferencesIdentity extends React.Component {
return ( return (
<div className="row payment-row"> <div className="row payment-row">
<div> <div>
Your subscription has been cancelled or your billing information has expired. Your subscription has been canceled or your billing information has expired.
We've paused your mailboxes! Re-new your subscription to continue using N1. We've paused your mailboxes! Renew your subscription to continue using N1.
</div> </div>
<OpenIdentityPageButton img="ic-upgrade.png" label="Update Subscription" path="/dashboard#subscription" campaign="Renew" source="Preferences" /> <OpenIdentityPageButton img="ic-upgrade.png" label="Update Subscription" path="/dashboard#subscription" campaign="Renew" source="Preferences" />
</div> </div>
@ -121,7 +121,7 @@ class PreferencesIdentity extends React.Component {
return ( return (
<div className="row payment-row"> <div className="row payment-row">
<div> <div>
Your subscription will renew on {new Date(identity.valid_until * 1000).toLocaleDateString()}. Enjoy N1! Your subscription is valid until {new Date(identity.valid_until * 1000).toLocaleDateString()}. Enjoy N1!
</div> </div>
</div> </div>
) )