Skip to content

Commit

Permalink
fix(agency selection): select agency on click
Browse files Browse the repository at this point in the history
  • Loading branch information
RunzelRosinchen committed Jul 18, 2023
1 parent 61b8b17 commit 7068467
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const AgencySelectionResults: VFC<AgencySelectionResultsProps> = ({
if (
// only external agencies
results?.length > 0 &&
!results?.every((agency) => agency.external)
results?.every((agency) => agency.external)
) {
setAgencyId(results[0].id);
setDisabledNextButton(false);
Expand Down

0 comments on commit 7068467

Please sign in to comment.