Skip to content

Commit

Permalink
Update auth.github._index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
olros committed Apr 26, 2024
1 parent 5be25b9 commit 6cb60b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/routes/auth.github._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const action = async ({ request, response }: ActionFunctionArgs) => {
} catch (e) {
console.error('GitHub index action - catch', e);
if (e instanceof Response) {
return e;
return new Response(undefined, { status: e.status, headers: e.headers });
}
throw e;
}
Expand Down

0 comments on commit 6cb60b0

Please sign in to comment.