You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my app, I have the Netlify Identity widget on the page /login/. When the nf_jwt cookie is written, it doesn't have an explicit path, so it gets saved with the path /login/ (MDN docs). That means that the cookie is not sent to the server for requests in my app like /journal/ because /journal/ doesn't match the path /login/.
In my app, I have the Netlify Identity widget on the page
/login/
. When thenf_jwt
cookie is written, it doesn't have an explicit path, so it gets saved with the path/login/
(MDN docs). That means that the cookie is not sent to the server for requests in my app like/journal/
because/journal/
doesn't match the path/login/
.I think that this needs to be changed
netlify-identity-widget/src/netlify-identity.js
Line 205 in bf72002
to
so that the cookie will be sent with all requests.
The text was updated successfully, but these errors were encountered: