From 2531a41a8a7ba5325cc672eb013f80376e578a4c Mon Sep 17 00:00:00 2001 From: Daseul Kim Date: Mon, 30 Jun 2025 14:26:28 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20footer=EC=97=90=20=EC=8B=A4=ED=96=89?= =?UTF-8?q?=EB=AA=A8=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/common/Footer.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/ui/common/Footer.tsx b/src/components/ui/common/Footer.tsx index d1e8f0f..22cfba5 100644 --- a/src/components/ui/common/Footer.tsx +++ b/src/components/ui/common/Footer.tsx @@ -1,10 +1,15 @@ 'use client' export default function Footer() { + const runMode = process.env.NEXT_PUBLIC_RUN_MODE || 'error' + return ( <> )