diff --git a/src/app/[lng]/meta/%5Fhealth/route.ts b/src/app/[lng]/meta/%5Fhealth/route.ts index 48bbd50b7..17f965b1b 100644 --- a/src/app/[lng]/meta/%5Fhealth/route.ts +++ b/src/app/[lng]/meta/%5Fhealth/route.ts @@ -3,8 +3,12 @@ const data = { isHealthy: true }; export async function GET() { - let hasUpdateAvailable = true; - try { + let hasUpdateAvailable = false; + + return Response.json({ ...data, hasUpdateAvailable }); + + // Disabled until proper fix + /*try { const latestCommitSHA = process.env.NEXT_PUBLIC_LATEST_COMMIT_SHA; const githubLatestCommitShaResponse = await fetch( `https://api.github.com/repos/jumperexchange/jumper-exchange/commits/${latestCommitSHA}/branches-where-head`, @@ -23,5 +27,5 @@ export async function GET() { } } finally { return Response.json({ ...data, hasUpdateAvailable }); - } + }*/ }