fix: add quotations around tags in metadata descriptions

This commit is contained in:
trafficlunar 2025-05-19 17:05:07 +01:00
parent b7dffe8b52
commit d9a299bb7f

View file

@ -16,7 +16,7 @@ export async function generateMetadata({ searchParams }: Props): Promise<Metadat
if (!tags) return {}; if (!tags) return {};
const description = `Discover Miis tagged ${tags} for your Tomodachi Life island!`; const description = `Discover Miis tagged '${tags}' for your Tomodachi Life island!`;
return { return {
metadataBase: new URL(process.env.BASE_URL!), metadataBase: new URL(process.env.BASE_URL!),