2
0

🐛 Lifetime users should have access to Pro features

This commit is contained in:
Baptiste Arnaud
2022-09-27 17:04:02 +02:00
parent 8c56c6c32d
commit 9ed4916c59

View File

@ -76,4 +76,5 @@ export const isFreePlan = (workspace?: Pick<Workspace, 'plan'>) =>
isNotDefined(workspace) || workspace?.plan === Plan.FREE
export const isWorkspaceProPlan = (workspace?: Pick<Workspace, 'plan'>) =>
isDefined(workspace) && workspace.plan === Plan.PRO
isDefined(workspace) &&
(workspace.plan === Plan.PRO || workspace.plan === Plan.LIFETIME)