16435 logic to disable continue button so cant submit empty rep

This commit is contained in:
2025-04-28 17:14:59 +01:00
parent 4bd1cf9744
commit eae42c3622
11 changed files with 47 additions and 32 deletions
@@ -211,6 +211,11 @@ const ConsultationAgent = (props) => {
type="submit"
className="govuk-button"
data-module="govuk-button"
disabled={
props.currentView.fileList.length < 1
? true
: false
}
>
{t("common:continue-button")}
</button>