Skip to content

Commit 8f3d21c

Browse files
committed
fixup!
1 parent 5f96ee0 commit 8f3d21c

File tree

1 file changed

+3
-1
lines changed
  • apps/site/app/[locale]/next-data/api-data

1 file changed

+3
-1
lines changed

apps/site/app/[locale]/next-data/api-data/route.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ const getPathnameForApiFile = (name: string, version: string) =>
2323
export const GET = async () => {
2424
const releases = provideReleaseData();
2525

26-
const { versionWithPrefix } = releases.find(release => release.status === 'Active LTS')!;
26+
const { versionWithPrefix } = releases.find(
27+
release => release.status === 'Active LTS'
28+
)!;
2729

2830
const gitHubApiResponse = await fetch(
2931
getGitHubApiDocsUrl(versionWithPrefix),

0 commit comments

Comments
 (0)