Skip to content

Commit

Permalink
fix: compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity committed Oct 10, 2024
1 parent e54abe3 commit 4c1c299
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ export async function getDocsPageProps(
pointsTo,
index,
availability: version.availability,
hidden: version.hidden,
authed: version.authed,
};
});

Expand Down Expand Up @@ -138,6 +140,8 @@ export async function getDocsPageProps(
index,
slug: tab.slug,
pointsTo: tab.pointsTo,
hidden: tab.hidden,
authed: tab.authed,
}),
link: (link) => ({
type: "tabLink",
Expand All @@ -152,6 +156,8 @@ export async function getDocsPageProps(
icon: changelog.icon,
index,
slug: changelog.slug,
hidden: changelog.hidden,
authed: changelog.authed,
}),
}),
),
Expand Down

0 comments on commit 4c1c299

Please sign in to comment.