supa-vacation icon indicating copy to clipboard operation
supa-vacation copied to clipboard

Wrong code fetching owner

Open atumas-bananamilk opened this issue 1 year ago • 0 comments

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

atumas-bananamilk avatar Jul 26 '22 02:07 atumas-bananamilk