Skip to content

Commit 95f7974

Browse files
committed
linter
1 parent 702b9fc commit 95f7974

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/js/08-feedback.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@
4747

4848
console.log(feedbackFormData)
4949

50-
fetch("/", {
51-
method: "POST",
52-
headers: { "Content-Type": "application/x-www-form-urlencoded" },
53-
body: new URLSearchParams(feedbackFormData).toString()
50+
fetch('/', {
51+
method: 'POST',
52+
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
53+
body: new URLSearchParams(feedbackFormData).toString()
5454
})
55-
.then(() => console.log("Form successfully submitted"))
55+
.then(() => console.log('Form successfully submitted'))
5656
.catch(error => alert(error))
5757

5858
feedbackFormSubmitButton.innerText = 'Submitted'

0 commit comments

Comments
 (0)