Unify commercial runtime ownership across backend and frontend so platform, experience, and hospitality modules use the shared commercial source of truth. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
/** Legacy Core plans admin removed — Commercial Runtime Admin is SoT. */
|
|
export default function AdminPlansRedirectPage() {
|
|
redirect("/admin/commercial/plans");
|
|
}
|