From 5f773a1e82bdf1d4afdb81d3c0042cb63609e0ed Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Fri, 3 Nov 2023 10:36:16 +0100 Subject: [PATCH] Update forbidden.tsx - edit to trigger vercel build --- www/pages/forbidden.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/pages/forbidden.tsx b/www/pages/forbidden.tsx index 31a746fc..ada3d424 100644 --- a/www/pages/forbidden.tsx +++ b/www/pages/forbidden.tsx @@ -1,7 +1,7 @@ import type { NextPage } from "next"; const Forbidden: NextPage = () => { - return

Sorry, you are not authorized to access this page.

; + return

Sorry, you are not authorized to access this page

; }; export default Forbidden;