Update forbidden.tsx - edit to trigger vercel build

This commit is contained in:
2023-11-03 10:36:16 +01:00
committed by Mathieu Virbel
parent da926b79a0
commit 5f773a1e82

View File

@@ -1,7 +1,7 @@
import type { NextPage } from "next";
const Forbidden: NextPage = () => {
return <h2>Sorry, you are not authorized to access this page.</h2>;
return <h2>Sorry, you are not authorized to access this page</h2>;
};
export default Forbidden;