Skip to content

Commit

Permalink
fix: 그룹 생성 시 상세 주소 누락 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
YehyeokBang committed Jun 15, 2024
1 parent 73e42fb commit 772bba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/group/create/CreateGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function CreateGroup() {
const requestCreateGroup = {
groupName: formik.values.groupName,
groupDescription: formik.values.description,
address: formik.values.address,
address: formik.values.address + " " + formik.values.addressDetail,
businessNumber: formik.values.businessNumber,
email: formik.values.email,
imageUrl: "groupDefault.png",
Expand Down

0 comments on commit 772bba6

Please sign in to comment.