Skip to content

Commit

Permalink
Merge pull request #1 from q-box-team/fix-http-header
Browse files Browse the repository at this point in the history
fix : modify incorrect request header when requesting email
  • Loading branch information
onlyoon authored Dec 26, 2023
2 parents 192e5e9 + 7ebea94 commit a56b328
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/(mono-column)/signup/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
const fetchData = {
method: 'post',
headers: {
'Content-Type': 'application/json;charset=UTF-8'
'Content-Type': 'application/json',
'charset': 'UTF-8'
},
body: JSON.stringify(requestData)
}
Expand Down

0 comments on commit a56b328

Please sign in to comment.