mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
chore: Fix typos.
This commit is contained in:
parent
d6d10f295c
commit
c37129a11b
@ -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();
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user