Rank 2: Process
What's weird is when I run this part of the code, the response URL triggered is success. which is "http://localhost:5173/".
"auth0", "http://localhost:5173/", "http://localhost:5173/error" );```
When I execute this code below, this is where I'm getting status code 401:```account .get() .then((response) => { console.log(response); // Success }) .catch((error) => { console.log(error); // Failure });```