Here is the request that makes the req.body empty
const getLatest = async (limit) => (await axios({method: "GET",
url: `/posts/latest`,
data: {limit: limit},})).data;
What is the problem here.