We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08f15b9 commit dc45eb1Copy full SHA for dc45eb1
src/netlify-identity.js
@@ -177,9 +177,8 @@ function runRoutes() {
177
const [key, value] = pair.split("=")
178
params[key] = value
179
})
180
- console.log({ params })
181
- if (!!document && params["store"]) {
182
- document.cookie = `nf_jwt=${params["store"]}`
+ if (!!document && params["access_token"]) {
+ document.cookie = `nf_jwt=${params["access_token"]}`
183
}
184
document.location.hash = ""
185
store.openModal("login")
0 commit comments