chore: Fix typos.

This commit is contained in:
Gervwyk 2022-04-29 12:10:55 +02:00
parent d6d10f295c
commit c37129a11b
2 changed files with 5 additions and 2 deletions

View File

@ -20,8 +20,11 @@ async function request({ url, method = 'GET', body }) {
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(body),
body: body && JSON.stringify(body),
});
if (res.status === 404) {
return null;
}
if (!res.ok) {
// TODO: check
const body = await res.json();

View File

@ -18,7 +18,7 @@ import request from './request.js';
// TODO: Handle TokenExpiredError
function fetchPageConfig(url) {
return request(url);
return request({ url });
}
function usePageConfig(pageId, basePath) {