fix: fix preview of blogs with too many images

This commit is contained in:
Raj 2024-03-13 08:01:02 +05:30
parent 302e8e40b7
commit 49fc222775
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ export async function generateMetadata(
title: title.toString(), title: title.toString(),
description: description.toString(), description: description.toString(),
author: author.toString(), author: author.toString(),
images: images.join(","), images: images[0],
github_username: github_username.toString(), github_username: github_username.toString(),
}); });