From e0d421f8ef2111b46184037348837f61d62014d9 Mon Sep 17 00:00:00 2001 From: sarahschwartz <58856580+sarahschwartz@users.noreply.github.com> Date: Wed, 22 Nov 2023 10:56:03 -0700 Subject: [PATCH] fix --- src/pages/[...slug].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[...slug].tsx b/src/pages/[...slug].tsx index 1e061be90..1c41865d7 100644 --- a/src/pages/[...slug].tsx +++ b/src/pages/[...slug].tsx @@ -54,7 +54,7 @@ export const getStaticProps: GetStaticProps = async ({ params }) => { const allLatestNavs = JSON.parse(readFileSync(allLatestNavsPath, 'utf8')); const versions = getVersions(false); const latestVersions = getVersions(true); - let fuelCoreVersion; + let fuelCoreVersion = null; if (slug.includes('guides/')) { fuelCoreVersion = getFuelCoreVersion();