Skip to content

Commit b383fd9

Browse files
committed
coding style: add missing space
1 parent 6e0fb45 commit b383fd9

File tree

1 file changed

+1
-1
lines changed
  • examples/real-world/middleware

1 file changed

+1
-1
lines changed

examples/real-world/middleware/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function callApi(endpoint, schema) {
3232

3333
return fetch(endpoint)
3434
.then(response =>
35-
response.json().then(json => ({ json, response}))
35+
response.json().then(json => ({ json, response }))
3636
).then(({ json, response }) => {
3737
if (!response.ok) {
3838
return Promise.reject(json);

0 commit comments

Comments
 (0)