how do i redirect on load?

i did this
export const route = {
  load: async () => {
    "use server";
    const cookie = getCookie("chat_session");
    if (!cookie) throw redirect("/");
  },
};

this is not working
Was this page helpful?
how do i redirect on load? - SolidJS