diff --git a/apps/arc-web/app/routes/auth-callback.tsx b/apps/arc-web/app/routes/auth-callback.tsx index ac015a9f6..669959dbb 100644 --- a/apps/arc-web/app/routes/auth-callback.tsx +++ b/apps/arc-web/app/routes/auth-callback.tsx @@ -49,7 +49,7 @@ export async function loader({ request }: Route.LoaderArgs) { } const session = await getSession(request); - session.set("userUrl", `https://api.github.com/user/${profile.id}`); + session.set("userUrl", `https://github.com/${profile.login}`); session.set("githubId", profile.id); session.set("githubNodeId", profile.node_id); session.set("githubLogin", profile.login);