diff options
Diffstat (limited to 'components/signup')
| -rw-r--r-- | components/signup/join-form.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/signup/join-form.tsx b/components/signup/join-form.tsx index 4ee05c9b..f81518eb 100644 --- a/components/signup/join-form.tsx +++ b/components/signup/join-form.tsx @@ -1071,7 +1071,7 @@ function CompleteVendorForm({ }, vendor: { ...data, - items: JSON.stringify(data.items), // 자재 배열을 JSON 문자열로 변환 + items: data.items, // 자재 배열을 그대로 전달 (서버에서 vendor_possible_materials 테이블에 저장) phone: normalizedVendorPhone, representativePhone: normalizedRepresentativePhone, contacts: normalizedContacts, |
