Files
portabase/app/(customer)/dashboard/page.tsx
T

6 lines
184 B
TypeScript

import {PageParams} from "@/types/next";
import {redirect} from "next/navigation";
export default async function RoutePage(props: PageParams<{}>) {
redirect("/dashboard/agents")
}