chore: standardize security and quality foundations
Magent CI/CD / verify (push) Failing after 9m34s
Magent CI/CD / deploy-beta (push) Skipped

This commit is contained in:
2026-09-17 20:03:47 +12:00
parent 5639dbcb83
commit f852e7c941
127 changed files with 17928 additions and 10741 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
import { redirect } from 'next/navigation'
import MyRequests from './MyRequests'
import { redirect } from "next/navigation";
import MyRequests from "./MyRequests";
export const dynamic = 'force-dynamic'
export const dynamic = "force-dynamic";
export default function HomePage() {
if (process.env.MAGENT_COMING_SOON === 'true') redirect('/coming-soon')
return <MyRequests />
if (process.env.MAGENT_COMING_SOON === "true") redirect("/coming-soon");
return <MyRequests />;
}