From 4aa00ad1d061e3b9b7c5f5237eb33c1154dbcc8b Mon Sep 17 00:00:00 2001 From: hdg0116 Date: Wed, 9 Sep 2026 13:46:01 +0900 Subject: [PATCH] =?UTF-8?q?Refactor:=20=EC=9D=B4=EB=A0=A5=20=EA=B4=80?= =?UTF-8?q?=EB=A6=AC=20=EC=95=A1=EC=85=98=20=ED=83=9C=EA=B7=B8=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=20=EC=A0=95=EB=A6=AC=20(#37)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/HistoryManagementTable.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/features/history-management/components/HistoryManagementTable.tsx b/src/features/history-management/components/HistoryManagementTable.tsx index 5184b4f..cefc388 100644 --- a/src/features/history-management/components/HistoryManagementTable.tsx +++ b/src/features/history-management/components/HistoryManagementTable.tsx @@ -153,16 +153,13 @@ function HistoryTableRow({history}: {history: HistoryRecord}) { } function HistoryActionTag({action}: {action: HistoryAction}) { - const isCreate = action === 'create'; - return ( + }`}> {actionLabels[action]} );