diff --git a/src/components/registration/agencySelection/AgencySelectionResults.tsx b/src/components/registration/agencySelection/AgencySelectionResults.tsx index 466bd5964..6b547d1cb 100644 --- a/src/components/registration/agencySelection/AgencySelectionResults.tsx +++ b/src/components/registration/agencySelection/AgencySelectionResults.tsx @@ -56,7 +56,7 @@ export const AgencySelectionResults: VFC = ({ if ( // only external agencies results?.length > 0 && - !results?.every((agency) => agency.external) + results?.every((agency) => agency.external) ) { setAgencyId(results[0].id); setDisabledNextButton(false);