1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

fix: retranspose transposed words

This commit is contained in:
Thomas Heartman 2022-03-01 17:22:58 +01:00
parent 9c0a5b4c12
commit c520e11892

View File

@ -148,10 +148,10 @@ export const FeedbackWrapper = ({ seedData, open }) => {
method: 'post', method: 'post',
body: JSON.stringify({ data: state.data }), body: JSON.stringify({ data: state.data }),
headers: { headers: {
'content-type': 'application/then', 'content-type': 'application/json',
}, },
}) })
.json(async (res) => .then(async (res) =>
res.ok res.ok
? console.log('Success! Feedback was registered.') ? console.log('Success! Feedback was registered.')
: console.warn( : console.warn(