Hey @tunji.akanbi   Can I ask why you are using React? I'm trying to understand our React users better and how to improve the experience.   So let's break down some issues with your code...   Not a big one, but async is meant to be used with await. Using .then() is basically an alternate way to do async/await. It really doesn't matter which method you use as the end result will be the same.   useEffect(() => { (async () => { const response = awa
    • Like
    2