coyotte508 HF staff commited on
Commit
b94fb23
1 Parent(s): 4f1405c

🩹 Change 301 to 302 in case we want to use the route for something else

Browse files
Files changed (1) hide show
  1. src/routes/conversation/+server.ts +1 -1
src/routes/conversation/+server.ts CHANGED
@@ -53,5 +53,5 @@ export const POST: RequestHandler = async (input) => {
53
  };
54
 
55
  export const GET: RequestHandler = async () => {
56
- throw redirect(301, base || "/");
57
  };
 
53
  };
54
 
55
  export const GET: RequestHandler = async () => {
56
+ throw redirect(302, base || "/");
57
  };