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 df51b2b commit f8bfd56Copy full SHA for f8bfd56
src/utils/markdown.ts
@@ -12,8 +12,8 @@ export function generateMarkdown(results: TestResult[]) {
12
if (a.language === b.language) return 0;
13
14
// push hosted solutions to the end
15
- if (a.language === "Hosted Subgraphs") return 1;
16
- if (b.language === "Hosted Subgraphs") return -1;
+ if (a.language === "Other Solutions") return 1;
+ if (b.language === "Other Solutions") return -1;
17
18
return a.language > b.language ? 1 : -1;
19
});
0 commit comments