From 14b84cc08d0215892f615a4505c3ab7a23eeb600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Mon, 9 Feb 2026 21:39:08 +0900 Subject: [PATCH] =?UTF-8?q?fix(WEB):=20BomCalculationResult=20import=20?= =?UTF-8?q?=EA=B2=BD=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - actions.ts에서 제거된 type re-export를 types.ts에서 직접 import로 변경 --- src/components/quotes/QuoteRegistrationV2.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quotes/QuoteRegistrationV2.tsx b/src/components/quotes/QuoteRegistrationV2.tsx index 985b0637..0776908a 100644 --- a/src/components/quotes/QuoteRegistrationV2.tsx +++ b/src/components/quotes/QuoteRegistrationV2.tsx @@ -43,9 +43,9 @@ import { calculateBomBulk, getQuoteReferenceData, type FinishedGoods, - type BomCalculationResult, type BomBulkResponse, } from "./actions"; +import type { BomCalculationResult } from "./types"; import { getClients } from "../accounting/VendorManagement/actions"; import { isNextRedirectError } from "@/lib/utils/redirect-error"; // 실제 로그인 사용자 정보는 localStorage('user')에 저장됨 (LoginPage.tsx 참조)