mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ebc04e4a9d
[web] Migrate cancel subscription to React GitOrigin-RevId: 8482fd61894c8011b4c980263ae1d41f396233c6
13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
import isInFreeTrial from './is-in-free-trial'
|
|
import isMonthlyCollaboratorPlan from './is-monthly-collaborator-plan'
|
|
|
|
export default function showDowngradeOption(
|
|
planCode: string,
|
|
isGroupPlan?: boolean,
|
|
trialEndsAt?: string | null
|
|
) {
|
|
return (
|
|
isMonthlyCollaboratorPlan(planCode, isGroupPlan) &&
|
|
!isInFreeTrial(trialEndsAt)
|
|
)
|
|
}
|