1//This error occures when you try to print a non resolved promise
2// Example the following code while lead to the error
3const res = await fetch('some_url/');
4console.log(res.json());
5
6// Correct way
7const res = await fetch('some_url/');
8const json = await res.json();
9console.log(json);