#complete challenge

2 messages · Page 1 of 1 (latest)

wraith oriole
#

Hi, i can't understand this hint any help?

agile stump
#

You don't show your code where you're calling getRecipeFromMistral()

What the hint is telling you is that you need either to call it with the await keyword:

const recipe = await getReceipeFromMistral();

Or with then .then() handler:

getRecipeFromMistral().then(recipe => {});