From 7728c8641c3b4d436bc862933df3ad771d5ba2c6 Mon Sep 17 00:00:00 2001 From: David Nguyen Date: Thu, 20 Feb 2025 15:38:06 +1100 Subject: [PATCH] fix: share opengraph --- apps/remix/app/routes/_unauthenticated+/share.$slug.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/remix/app/routes/_unauthenticated+/share.$slug.tsx b/apps/remix/app/routes/_unauthenticated+/share.$slug.tsx index a2c73ac26..f45f496af 100644 --- a/apps/remix/app/routes/_unauthenticated+/share.$slug.tsx +++ b/apps/remix/app/routes/_unauthenticated+/share.$slug.tsx @@ -54,3 +54,7 @@ export const loader = ({ request }: Route.LoaderArgs) => { // Is hardcoded because this whole meta is hardcoded anyway for Documenso. throw redirect('https://documenso.com'); }; + +export default function SharePage() { + return
; +}