Skip to content

Commit

Permalink
Merge pull request #204 from BCSDLab/fix/delete-https
Browse files Browse the repository at this point in the history
[hotfix] https 삭제
  • Loading branch information
dooohun authored Mar 22, 2024
2 parents 9f0cd03 + 3ccc2d0 commit 537f9bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/page/Auth/Signup/utils/parseRegisterData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const parseRegisterData = async (
) => {
const companyNumber = ownerInfo.registrationNumberMobile ? ownerInfo.registrationNumberMobile.replace(/^(\d{3})(\d{2})(\d+)/, '$1-$2-$3') : `${ownerInfo.registrationNumberFront}-${ownerInfo.registrationNumberMiddle}-${ownerInfo.registrationNumberEnd}`;
const phoneNumber = ownerInfo.phoneMobile ? ownerInfo.phoneMobile.replace(/^(\d{3})(\d{4})(\d+)/, '$1-$2-$3') : `${ownerInfo.phoneFront}-${ownerInfo.phoneMiddle}-${ownerInfo.phoneEnd}`;
const attachmentUrls = fileUrls!.map((file) => ({ file_url: `https://${file}` }));
const attachmentUrls = fileUrls!.map((file) => ({ file_url: `${file}` }));
const shopId = ownerInfo.shopName === searchShopState ? Number(selectedShopId) : null;
const hashedPassword = await sha256(userInfo.password!);

Expand Down

0 comments on commit 537f9bc

Please sign in to comment.