// Legacy route — now the TV library's All Shows tab. // // Kept as a redirect rather than deleted: GenreTags builds links to these // paths and users have them in history. // // TRACES: UR-063 | DR-105 import { redirect } from "@sveltejs/kit"; export const load = () => { redirect(307, "/library/tv?view=all"); };