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 9dd6665 commit 99c0a47Copy full SHA for 99c0a47
apps/vps-web/src/app/netlify-deployment-wip/token-handler.ts
@@ -17,7 +17,7 @@ export const netlifyTokenHandler = () => {
17
netlifyAccessToken = accessToken;
18
} else {
19
const urlParams = new URLSearchParams(window.location.search);
20
- const tokenFromUrl = urlParams.get('netlify_access_token');
+ const tokenFromUrl = urlParams.get('access_token');
21
if (tokenFromUrl) {
22
netlifyAccessToken = tokenFromUrl;
23
document.cookie = `netlify_access_token=${tokenFromUrl}; path=/; max-age=31536000; secure; samesite=strict`;
0 commit comments