We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc134bb commit d1e25ccCopy full SHA for d1e25cc
src/utils/organization.mts
@@ -6,7 +6,9 @@ import type {
6
export function getEnterpriseOrgs(
7
orgs: Organizations,
8
): EnterpriseOrganizations {
9
- return orgs.filter(o => o.plan.includes('enterprise')) as EnterpriseOrganizations
+ return orgs.filter(o =>
10
+ o.plan.includes('enterprise'),
11
+ ) as EnterpriseOrganizations
12
}
13
14
export function getOrgSlugs(orgs: Organizations): string[] {
0 commit comments