fix(fetcher): fix answers route crashing in case there aren't any answers

This commit is contained in:
zyachel 2023-11-05 15:32:17 +05:30
parent 4cd551438b
commit c6c4828422

View file

@ -38,10 +38,7 @@ const answersFetcher = async (resourceStr, lang) => {
rawData.question = matchedPart.question;
// primary answer block
} else if (
matchedPart.question?.answers?.edges &&
matchedPart.question.answers.edges[0].node.answer.content
) {
} else if (matchedPart.question?.answers?.edges?.[0].node.answer?.content) {
rawData.answers.push(matchedPart.question.answers.edges[0].node.answer);
// other answer blocks