1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 05:21:43 +02:00

Fix invalid faq schema

This commit is contained in:
Kamran Ahmed
2023-01-14 12:11:16 +04:00
parent 11695f4b05
commit 85eff7f894

View File

@@ -49,7 +49,7 @@ export function generateFAQSchema(faqs: FAQType[]) {
name: faq.question,
acceptedAnswer: {
'@type': 'Answer',
text: faq.answer,
text: faq.answer.join(' '),
},
})),
};