From 8124fe5f6cdfcd4d17142dbb605f39d793fe1bfc Mon Sep 17 00:00:00 2001 From: veganbeef Date: Wed, 16 Jul 2025 09:49:19 -0700 Subject: [PATCH] feat: add back og properties --- src/lib/utils.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/utils.ts b/src/lib/utils.ts index d39dc79..89e8b8c 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -24,6 +24,9 @@ export function getMiniAppEmbedMetadata(ogImageUrl?: string) { return { version: "next", imageUrl: ogImageUrl ?? APP_OG_IMAGE_URL, + ogTitle: APP_NAME, + ogDescription: APP_DESCRIPTION, + ogImageUrl: ogImageUrl ?? APP_OG_IMAGE_URL, button: { title: APP_BUTTON_TEXT, action: { @@ -58,6 +61,9 @@ export async function getFarcasterDomainManifest(): Promise { primaryCategory: APP_PRIMARY_CATEGORY, tags: APP_TAGS, requiredChains: APP_REQUIRED_CHAINS.length > 0 ? APP_REQUIRED_CHAINS : undefined, + ogTitle: APP_NAME, + ogDescription: APP_DESCRIPTION, + ogImageUrl: APP_OG_IMAGE_URL, }, }; }