diff --git a/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx b/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx index 0e438da6..497dd5c0 100644 --- a/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx +++ b/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx @@ -158,10 +158,15 @@ const SelectBasicComponent: React.FC = ({ console.log("πŸ” [SelectBasic] μΉ΄ν…Œκ³ λ¦¬ API 응닡:", response); if (response.success && response.data) { + console.log("πŸ” [SelectBasic] 원본 데이터 μƒ˜ν”Œ:", { + firstItem: response.data[0], + keys: response.data[0] ? Object.keys(response.data[0]) : [], + }); + const activeValues = response.data.filter((v) => v.isActive !== false); const options = activeValues.map((v) => ({ - value: v.categoryValue, - label: v.categoryLabel || v.categoryValue, + value: v.category_value || v.categoryValue || v.value, + label: v.category_label || v.categoryLabel || v.label || v.category_value || v.categoryValue || v.value, })); console.log("βœ… [SelectBasic] μΉ΄ν…Œκ³ λ¦¬ μ˜΅μ…˜ μ„€μ •:", {