#complete challenge
2 messages · Page 1 of 1 (latest)
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 => {});