diff --git a/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx b/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx index 497dd5c0..5915a58c 100644 --- a/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx +++ b/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx @@ -165,8 +165,8 @@ const SelectBasicComponent: React.FC = ({ const activeValues = response.data.filter((v) => v.isActive !== false); const options = activeValues.map((v) => ({ - value: v.category_value || v.categoryValue || v.value, - label: v.category_label || v.categoryLabel || v.label || v.category_value || v.categoryValue || v.value, + value: v.valueCode, + label: v.valueLabel || v.valueCode, })); console.log("✅ [SelectBasic] 카테고리 옵션 설정:", {