diff --git a/routes/account/display-name.tsx b/routes/account/display-name.tsx index b3f19a772..e901d0bf5 100644 --- a/routes/account/display-name.tsx +++ b/routes/account/display-name.tsx @@ -39,7 +39,7 @@ export const handler: Handlers = { await setUserDisplayName(ctx.state.session.user.id, displayName); return new Response(null, { headers: { location: "/account" }, - status: 307, + status: 303, }); } catch (error) { return new Response(null, { @@ -48,7 +48,7 @@ export const handler: Handlers = { encodeURIComponent(error.message) }`, }, - status: 307, + status: 303, }); } },