From a52be724c02f5f434e3b59326ba7a9d72bac577b Mon Sep 17 00:00:00 2001 From: smanylov Date: Thu, 12 Feb 2026 11:17:30 +0700 Subject: [PATCH] for getBuildData return null while error --- src/app/actions/action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/actions/action.ts b/src/app/actions/action.ts index e84aa1d..d6b2c1e 100644 --- a/src/app/actions/action.ts +++ b/src/app/actions/action.ts @@ -115,6 +115,6 @@ export async function getBuildData() { return await response.json(); } } catch (error) { - console.error('error'); + return null; } }