From 49fc222775ef725d37fd62b19553015851401f64 Mon Sep 17 00:00:00 2001 From: Raj Sharma Date: Wed, 13 Mar 2024 08:01:02 +0530 Subject: [PATCH] fix: fix preview of blogs with too many images --- src/app/(home)/story/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(home)/story/page.tsx b/src/app/(home)/story/page.tsx index b27424d..1e456f0 100644 --- a/src/app/(home)/story/page.tsx +++ b/src/app/(home)/story/page.tsx @@ -41,7 +41,7 @@ export async function generateMetadata( title: title.toString(), description: description.toString(), author: author.toString(), - images: images.join(","), + images: images[0], github_username: github_username.toString(), });