From 2a92f48a2c3d2c64e68593554f2800e990199da5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Tue, 27 Jan 2026 14:49:51 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B2=AC=EC=A0=81=20=EC=A0=80=EC=9E=A5?= =?UTF-8?q?=20=EB=B2=84=ED=8A=BC=20=EB=9D=BC=EB=B2=A8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 임시저장 → 저장 (일반 저장) - 최종저장 → 견적 확정 (확정 기능) --- src/components/quotes/QuoteFooterBar.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/quotes/QuoteFooterBar.tsx b/src/components/quotes/QuoteFooterBar.tsx index 22c61eed..1ba5f1cb 100644 --- a/src/components/quotes/QuoteFooterBar.tsx +++ b/src/components/quotes/QuoteFooterBar.tsx @@ -2,7 +2,7 @@ * 견적 푸터 바 * * - 예상 전체 견적금액 표시 - * - 버튼: 견적서 산출, 임시저장, 최종저장 + * - 버튼: 견적서 산출, 저장, 견적 확정 * - 뒤로가기 버튼 */ @@ -123,7 +123,7 @@ export function QuoteFooterBar({ )} - {/* 임시저장 - edit 모드에서만 표시 */} + {/* 저장 - edit 모드에서만 표시 */} {!isViewMode && ( )} - {/* 최종저장 - 양쪽 모드에서 표시 (final 상태가 아닐 때만) */} + {/* 견적 확정 - 양쪽 모드에서 표시 (final 상태가 아닐 때만) */} {status !== "final" && ( )}