diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx index d5f4a42df4..11ee7a74f7 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx @@ -122,7 +122,7 @@ function MultiSelectField({ question, i18n }) { validate: question.isrequired ? required(null, i18n) : null, }); const id = `survey-question-${question.variable}`; - const hasActualValue = !question.required || meta.value.length > 0; + const hasActualValue = !question.required || meta.value?.length > 0; const isValid = !meta.touched || (!meta.error && hasActualValue); return (