Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
fix: codestream is now sorted correctly to front of quickstarts
Browse files Browse the repository at this point in the history
  • Loading branch information
tabathadelane committed Jan 11, 2023
1 parent f64348e commit 70987ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/allFilteredQuickstarts.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const alphaSort = (a, b) => a.title.localeCompare(b.title);
const shiftCodestream = (a, b) => {
const codestreamId = '29bd9a4a-1c19-4219-9694-0942f6411ce7';
if (a.id === codestreamId) {
return 1;
return -1;
}
if (b.id === codestreamId) {
return 1;
Expand Down

0 comments on commit 70987ac

Please sign in to comment.