supa-vacation
supa-vacation copied to clipboard
Wrong code fetching owner
This code is wrong:
const owner = await axios.get(
/api/homes/${home.id}/owner);
It should be replaced with:
const { data } = await axios.get(
/api/homes/${home.id}/owner);
And then you get the owner email
by data?.owner.email