import { createFileRoute, redirect } from "@tanstack/react-router";

export const Route = createFileRoute("/content/media")({
  beforeLoad: () => {
    throw redirect({ to: "/content/scheduler", search: { oauth: undefined, network: undefined } });
  },
});
