Skip to content

Commit 7c7eb0b

Browse files
committed
linter
1 parent 95f7974 commit 7c7eb0b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/js/08-feedback.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
fetch('/', {
5151
method: 'POST',
5252
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
53-
body: new URLSearchParams(feedbackFormData).toString()
53+
body: new URLSearchParams(feedbackFormData).toString(),
5454
})
55-
.then(() => console.log('Form successfully submitted'))
56-
.catch(error => alert(error))
55+
.then(() => console.log('Form successfully submitted'))
56+
.catch((error) => alert(error))
5757

5858
feedbackFormSubmitButton.innerText = 'Submitted'
5959
feedbackFormSubmitButton.disabled = true

0 commit comments

Comments
 (0)