211922b6a6
* first batch of changes * tests fix * FE fixed * renaming constants * test fixes * moar test fixes * another test fix * reenable app rover check --------- Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
import { PaidWorkspacePlans, WorkspacePlans } from '@speckle/shared'
|
|
|
|
export const isPaidPlanType = (plan: WorkspacePlans): boolean => {
|
|
return (Object.values(PaidWorkspacePlans) as string[]).includes(plan)
|
|
}
|