// Legacy route — now the Movies library's Genres 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/movies?view=genres"); };