fix: return object instead of text

This commit is contained in:
Methapon2001 2024-12-18 09:46:52 +07:00
parent 2519ae60e9
commit b6d00c41ab

View file

@ -216,7 +216,7 @@ const flowAccountAPI = {
return { return {
ok: res.ok, ok: res.ok,
status: res.status, status: res.status,
body: await res.text(), body: await res.json(),
}; };
}, },
}; };