The cookie name token is shown in my application tab in chrome, but when I run check to get the token, it's returning not found. This is the code.
const token = Cookies.get("token")
token ? console.log("cookie found") : console.log("no cookie found")
This is my token in my application tab in chrome. enter image description here
This is what my console returns. enter image description here