From a164fd1256fc16d84f0211830a25b7880045ed3d Mon Sep 17 00:00:00 2001 From: Mythie Date: Wed, 27 Sep 2023 09:11:56 +1000 Subject: [PATCH] fix: lint errors --- apps/web/src/app/(share)/share/[slug]/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/(share)/share/[slug]/page.tsx b/apps/web/src/app/(share)/share/[slug]/page.tsx index b9ca4baea..51684d384 100644 --- a/apps/web/src/app/(share)/share/[slug]/page.tsx +++ b/apps/web/src/app/(share)/share/[slug]/page.tsx @@ -16,12 +16,12 @@ export function generateMetadata({ params: { slug } }: SharePageProps) { title: 'Documenso - Join the open source signing revolution', description: 'I just signed with Documenso!', type: 'website', - images: [`${process.env.NEXT_PUBLIC_WEBAPP_URL}/share/${slug}/opengraph`], + images: [`${APP_BASE_URL}/share/${slug}/opengraph`], }, twitter: { site: '@documenso', card: 'summary_large_image', - images: [`${process.env.NEXT_PUBLIC_WEBAPP_URL}/share/${slug}/opengraph`], + images: [`${APP_BASE_URL}/share/${slug}/opengraph`], description: 'I just signed with Documenso!', }, } satisfies Metadata;