Commit
·
b94fb23
1
Parent(s):
4f1405c
🩹 Change 301 to 302 in case we want to use the route for something else
Browse files
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(
|
| 57 |
};
|
|
|
|
| 53 |
};
|
| 54 |
|
| 55 |
export const GET: RequestHandler = async () => {
|
| 56 |
+
throw redirect(302, base || "/");
|
| 57 |
};
|