Jul 10, 2017 · 1 min read
You know what, you can disregard this ha … but I did resolve the issue, and it was pretty minor.
The first chained .then after the fetch in line 31 uses curly braces in the function, but it doesn’t actually return the response.json():
.then(response => { response.json() })
and it would normally return if the curly braces were omitted, but since they aren’t I just had to add:
.then(response => { return response.json() })
