Skip to content

Commit

Permalink
fix: revision content screen copy (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara authored Feb 16, 2022
1 parent 3373a47 commit 723a70d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const getPlanHistoryDuration = (planName: string | undefined) => {
case 'Plus':
return '365 days';
default:
return 'the current session';
return "the current session's changes";
}
};

Expand All @@ -37,7 +37,9 @@ export const RevisionContentLocked: FunctionComponent<{
<div class="text-lg font-bold mt-2 mb-1">Can't access this version</div>
<div className="mb-4 color-grey-0 leading-140%">
{getPremiumContentCopy(
!isUserSubscriptionCanceled && !isUserSubscriptionExpired
!isUserSubscriptionCanceled &&
!isUserSubscriptionExpired &&
userSubscriptionName
? userSubscriptionName
: 'free'
)}
Expand Down

0 comments on commit 723a70d

Please sign in to comment.