diff --git a/src/components/quotes/LocationDetailPanel.tsx b/src/components/quotes/LocationDetailPanel.tsx index d3362eaa..95423246 100644 --- a/src/components/quotes/LocationDetailPanel.tsx +++ b/src/components/quotes/LocationDetailPanel.tsx @@ -71,6 +71,7 @@ const FLOOR_OPTIONS = [ const GUIDE_RAIL_TYPES = [ { value: "wall", label: "벽면형" }, { value: "floor", label: "측면형" }, + { value: "mixed", label: "혼합형" }, ]; // 모터 전원 diff --git a/src/components/quotes/QuoteRegistration.tsx b/src/components/quotes/QuoteRegistration.tsx index 701f3d53..627fae81 100644 --- a/src/components/quotes/QuoteRegistration.tsx +++ b/src/components/quotes/QuoteRegistration.tsx @@ -228,7 +228,7 @@ export function QuoteRegistration({ const createRandomLocation = (index: number): LocationItem => { const floors = ["B2", "B1", "1F", "2F", "3F", "4F", "5F", "R"]; const codePrefix = ["SD", "FSS", "FD", "SS", "DS"]; - const guideRailTypes = ["wall", "floor"]; + const guideRailTypes = ["wall", "floor", "mixed"]; const motorPowers = ["single", "three"]; const controllers = ["basic", "smart", "premium"];