Skip to content

Commit 9e08f7a

Browse files
committed
lint
1 parent 38f79b7 commit 9e08f7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/portal/src/app/references/components/TDoc/utils/getSidebarLinkgroups.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,10 @@ export function getSidebarLinkGroups(doc: TransformedDoc, path: string) {
285285
});
286286

287287
// Add the top-level functions
288-
for (const [_, docs] of Object.entries(bridgeGroups).filter(
288+
for (const group of Object.entries(bridgeGroups).filter(
289289
([namespaceName]) => namespaceName.toLowerCase() === "common",
290290
)) {
291+
const docs = group[1];
291292
for (const doc of docs) {
292293
bridgeLinkGroups.push({
293294
name: doc.name,

0 commit comments

Comments
 (0)