From 18776b9b4b47ecab7c54a9eaa4439c87540caea2 Mon Sep 17 00:00:00 2001 From: joungmin Date: Thu, 12 Mar 2026 20:15:59 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B0=94=ED=85=80=EC=8B=9C=ED=8A=B8=20?= =?UTF-8?q?=ED=95=84=ED=84=B0=20=EA=B8=80=EC=94=A8=20=ED=81=AC=EA=B8=B0=20?= =?UTF-8?q?=EB=AF=B8=EC=84=B8=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/FilterSheet.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/FilterSheet.tsx b/frontend/src/components/FilterSheet.tsx index 689bffb..72aa580 100644 --- a/frontend/src/components/FilterSheet.tsx +++ b/frontend/src/components/FilterSheet.tsx @@ -78,14 +78,14 @@ export default function FilterSheet({ open, onClose, title, options, value, onCh !value ? "text-brand-600 dark:text-brand-400 font-medium bg-brand-50/50 dark:bg-brand-900/20" : "text-gray-700 dark:text-gray-300" }`} > - 전체 + 전체 {!value && } {groups.map((group) => (
{group && ( -
+
{group}
)} @@ -99,7 +99,7 @@ export default function FilterSheet({ open, onClose, title, options, value, onCh : "text-gray-700 dark:text-gray-300" }`} > - {opt.label} + {opt.label} {value === opt.value && } ))}