diff --git a/src/features/form/components/FormDetailPage.tsx b/src/features/form/components/FormDetailPage.tsx index 0e0ee8a..ba45383 100644 --- a/src/features/form/components/FormDetailPage.tsx +++ b/src/features/form/components/FormDetailPage.tsx @@ -280,6 +280,7 @@ export const FormDetailPage = () => { }); const answersArray = Object.entries(answers) + .filter(([questionId]) => sections.some(section => section.questions?.some(q => q.id === questionId))) .filter(([questionId, value]) => value !== "" && !["UPLOAD_FILE", "OAUTH_CONNECT"].includes(questionTypeMap[questionId])) .map(([questionId, value]) => { const questionType = questionTypeMap[questionId];