Unverified Commit c7607a91 authored by Tamika Tannis's avatar Tamika Tannis Committed by GitHub

Remove timeout on feedback submission api call (#232)

* Remove timeout on feedback submission api call

* Update test
parent f8699a39
...@@ -16,7 +16,6 @@ describe('submitFeedback', () => { ...@@ -16,7 +16,6 @@ describe('submitFeedback', () => {
data: formData, data: formData,
method: 'post', method: 'post',
url: '/api/mail/v0/feedback', url: '/api/mail/v0/feedback',
timeout: 5000,
headers: {'Content-Type': 'multipart/form-data' } headers: {'Content-Type': 'multipart/form-data' }
}) })
}); });
......
...@@ -5,7 +5,6 @@ export function submitFeedback(data: FormData) { ...@@ -5,7 +5,6 @@ export function submitFeedback(data: FormData) {
data, data,
method: 'post', method: 'post',
url: '/api/mail/v0/feedback', url: '/api/mail/v0/feedback',
timeout: 5000,
headers: {'Content-Type': 'multipart/form-data' } headers: {'Content-Type': 'multipart/form-data' }
}); });
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment