You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.sort((a, b) =>fundamentalsOrderIndex[a.id]-fundamentalsOrderIndex[b.id]);
22
+
.sort((a, b) =>fundamentalsOrderIndex.get(a.id)-fundamentalsOrderIndex.get(b.id));
22
23
23
24
const reference =articles
24
25
.filter((a) =>referenceOrder.includes(a.id))
25
-
.sort((a, b) =>referenceOrderIndex[a.id]-referenceOrderIndex[b.id]);
26
+
.sort((a, b) =>referenceOrderIndex.get(a.id)-referenceOrderIndex.get(b.id));
26
27
---
27
28
28
29
<BaseLayouttitle="Learning Hub"description="Curated articles and walkthroughs to help you unlock everything you can do with GitHub Copilot"activeNav="learning-hub">
0 commit comments