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 5f96ee0 commit 8f3d21cCopy full SHA for 8f3d21c
apps/site/app/[locale]/next-data/api-data/route.ts
@@ -23,7 +23,9 @@ const getPathnameForApiFile = (name: string, version: string) =>
23
export const GET = async () => {
24
const releases = provideReleaseData();
25
26
- const { versionWithPrefix } = releases.find(release => release.status === 'Active LTS')!;
+ const { versionWithPrefix } = releases.find(
27
+ release => release.status === 'Active LTS'
28
+ )!;
29
30
const gitHubApiResponse = await fetch(
31
getGitHubApiDocsUrl(versionWithPrefix),
0 commit comments