_40 0 _55 NULL _65 0 _72 NULL REACT NAGIDE FETCH

//This error occures when you try to print a non resolved promise
// Example the following code while lead to the error
const res = await fetch('some_url/');
console.log(res.json());

// Correct way
const res = await fetch('some_url/');
const json = await res.json();
console.log(json);
Wrong Wolf