File size: 144 Bytes
a799675
 
 
 
 
1
2
3
4
5
6
import { redirect } from "@sveltejs/kit";

export const load = async ({ params }) => {
	throw redirect(302, "../conversation/" + params.id);
};