fix: revision content screen copy (#876)
This commit is contained in:
@@ -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";
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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'
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user