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 38f79b7 commit 9e08f7aCopy full SHA for 9e08f7a
apps/portal/src/app/references/components/TDoc/utils/getSidebarLinkgroups.ts
@@ -285,9 +285,10 @@ export function getSidebarLinkGroups(doc: TransformedDoc, path: string) {
285
});
286
287
// Add the top-level functions
288
- for (const [_, docs] of Object.entries(bridgeGroups).filter(
+ for (const group of Object.entries(bridgeGroups).filter(
289
([namespaceName]) => namespaceName.toLowerCase() === "common",
290
)) {
291
+ const docs = group[1];
292
for (const doc of docs) {
293
bridgeLinkGroups.push({
294
name: doc.name,
0 commit comments