mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-24 08:54:05 +10:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { createFileRoute, redirect } from "@tanstack/react-router";
|
|
|
|
export const Route = createFileRoute("/dashboard/settings/ai")({
|
|
beforeLoad: () => {
|
|
throw redirect({ to: "/dashboard/settings/integrations", replace: true });
|
|
},
|
|
});
|