From d7e96327a7695bdd784648adfedb71e515157f92 Mon Sep 17 00:00:00 2001 From: dohyeons Date: Wed, 10 Dec 2025 15:11:46 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B3=80=EA=B2=BD=20=EC=9D=B4=EB=A0=A5=20?= =?UTF-8?q?=EB=AA=A8=EB=8B=AC=EC=9D=98=20=EC=9E=91=EC=97=85=20=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EC=8A=A4=ED=83=80=EC=9D=BC=EC=9D=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/components/common/TableHistoryModal.tsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/frontend/components/common/TableHistoryModal.tsx b/frontend/components/common/TableHistoryModal.tsx index 6e552e21..91299457 100644 --- a/frontend/components/common/TableHistoryModal.tsx +++ b/frontend/components/common/TableHistoryModal.tsx @@ -115,17 +115,13 @@ export function TableHistoryModal({ const getOperationBadge = (type: string) => { switch (type) { case "INSERT": - return 추가; + return 추가; case "UPDATE": - return 수정; + return 수정; case "DELETE": - return 삭제; + return 삭제; default: - return ( - - {type} - - ); + return {type}; } };