Skip to content

Commit

Permalink
fix: https 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
dooohun committed Mar 22, 2024
1 parent 9f0cd03 commit 3ccc2d0
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 3ccc2d0

Please sign in to comment.