Skip to content

Commit c92f2a4

Browse files
committed
fix: fix format
1 parent d272d83 commit c92f2a4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/utils/templateAggregators.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ export const getTemplatesByOrg = (templates: Template[]): TemplatesByOrg => {
3737
}
3838

3939
const sortedOrgs = Object.fromEntries(
40-
Object.entries(orgs).sort(([, a], [, b]) => a[0].organization_name.localeCompare(b[0].organization_name))
40+
Object.entries(orgs).sort(([, a], [, b]) =>
41+
a[0].organization_name.localeCompare(b[0].organization_name),
42+
),
4143
);
4244

4345
return { all: templates, ...sortedOrgs };

0 commit comments

Comments
 (0)