Localized country names.

This commit is contained in:
Mike Cao 2020-09-30 16:27:27 -07:00
parent e5cd162b83
commit fd69f0df24
22 changed files with 69 additions and 263 deletions

View file

@ -12,7 +12,6 @@ export const apiRequest = (method, url, body, headers) =>
},
body,
}).then(res => {
console.log({ res });
if (res.ok) {
return res.json().then(data => ({ ok: res.ok, status: res.status, data }));
}