Skip to content

Commit

Permalink
Change from ZEIT to Vercel for auth URL. (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
leerob authored Mar 18, 2022
1 parent fdad389 commit 3ada21b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const tokenAPI = state =>
new Promise(async (resolve, reject) => {
const qs = queryString.stringify({state});
try {
const res = await fetch(`https://release-auth.zeit.sh/?${qs}`);
const res = await fetch(`https://release-auth.vercel.sh/?${qs}`);
if (res.status === 403) {
reject(new Error('Unauthorized'));
}
Expand Down

0 comments on commit 3ada21b

Please sign in to comment.