there is a bug on the Login – Vercel page where a client side exception is thrown whenever any button on the page is clicked.
Application error: a client-side exception has occurred while loading vercel.com (see the browser console for more information)
the error is because a fetch to https://vercel.com/api/v2/teams/chriskrogh responds with the error
{
"error": {
"code": "not_found",
"message": "Team not found by the given slug/id"
}
}
my team’s slug id is something else, but my GH username is chriskrogh
, so I’m guessing the bug is that Vercel is using my GH username instead of my team ID when fetching the team from the client.