feat(support): put suspense border on page

This commit is contained in:
dvelo 2025-04-22 16:56:51 -05:00
parent 66096cf833
commit 738de7b6ee

@ -1,5 +1,6 @@
import { Support } from "@/components/feat/support/support"; import { Support } from "@/components/feat/support/support";
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Suspense } from "react";
export const metadata: Metadata = { export const metadata: Metadata = {
applicationName: "MHSF", applicationName: "MHSF",
@ -9,7 +10,9 @@ export const metadata: Metadata = {
export default function SupportPage() { export default function SupportPage() {
return ( return (
<div> <div>
<Support /> <Suspense>
<Support />
</Suspense>
</div> </div>
); );
} }