6 lines
187 B
TypeScript
6 lines
187 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function NewLotPage() {
|
|
// New lot creation is now handled via modal in the Lots tab
|
|
redirect("/admin/route-trace/lots");
|
|
} |