Skip to content

Commit f8bfd56

Browse files
committed
fix ordering of libs
1 parent df51b2b commit f8bfd56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/markdown.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export function generateMarkdown(results: TestResult[]) {
1212
if (a.language === b.language) return 0;
1313

1414
// push hosted solutions to the end
15-
if (a.language === "Hosted Subgraphs") return 1;
16-
if (b.language === "Hosted Subgraphs") return -1;
15+
if (a.language === "Other Solutions") return 1;
16+
if (b.language === "Other Solutions") return -1;
1717

1818
return a.language > b.language ? 1 : -1;
1919
});

0 commit comments

Comments
 (0)