Skip to content

Commit d1e25cc

Browse files
committed
Lint nits
1 parent bc134bb commit d1e25cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils/organization.mts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import type {
66
export function getEnterpriseOrgs(
77
orgs: Organizations,
88
): EnterpriseOrganizations {
9-
return orgs.filter(o => o.plan.includes('enterprise')) as EnterpriseOrganizations
9+
return orgs.filter(o =>
10+
o.plan.includes('enterprise'),
11+
) as EnterpriseOrganizations
1012
}
1113

1214
export function getOrgSlugs(orgs: Organizations): string[] {

0 commit comments

Comments
 (0)