From dd727fbe9ce78c17c4884fc2a486101bbac8d187 Mon Sep 17 00:00:00 2001 From: ReaJason Date: Thu, 14 Aug 2025 00:47:00 +0800 Subject: [PATCH] fix: isProduction always true --- web/src/pages/about.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/about.tsx b/web/src/pages/about.tsx index 964c1f52..a4077171 100644 --- a/web/src/pages/about.tsx +++ b/web/src/pages/about.tsx @@ -47,7 +47,7 @@ export default function AboutPage() { return "unknown"; }, }); - const inProduction = true; + const inProduction = env.MODE === "production"; const containerVariants = { hidden: { opacity: 0 },