Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hotfix] https 삭제 #204

Merged
merged 1 commit into from
Mar 22, 2024
Merged

[hotfix] https 삭제 #204

merged 1 commit into from
Mar 22, 2024

Conversation

dooohun
Copy link
Contributor

@dooohun dooohun commented Mar 22, 2024

What is this PR? 🔍

  • 기능 :
  • issue :

Changes 📝

ScreenShot 📷

Test CheckList ✅

Precaution

✔️ Please check if the PR fulfills these requirements

  • It's submitted to develop branch, not the main branch
  • Did you merge recent develop branch?

@dooohun dooohun added the 🐞 BugFix 버그 해결 label Mar 22, 2024
@dooohun dooohun self-assigned this Mar 22, 2024
@@ -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}` }));
Copy link
Contributor

@hanagertrudeKim hanagertrudeKim Mar 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀

Suggested change
const attachmentUrls = fileUrls!.map((file) => ({ file_url: `${file}` }));
const attachmentUrls = fileUrls!.map((file) => ({ file_url: file }));

@dooohun dooohun merged commit 537f9bc into develop Mar 22, 2024
1 of 2 checks passed
dooohun added a commit that referenced this pull request Mar 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 BugFix 버그 해결
Projects
None yet
Development

Successfully merging this pull request may close these issues.

파일 업로드 URL 클라이언트 대응
2 participants