From 482e00425e77af5ce3b932975851c1f98af558a0 Mon Sep 17 00:00:00 2001 From: Cynthia Anyaeriuba Date: Wed, 15 Nov 2023 14:50:40 +0000 Subject: [PATCH] Correct the flow for qatar -> have medical treatment removing qatar from the EVW list changed the flow as no condition was in place for ETA countries to go to the correct outcome --- app/flows/check_uk_visa_flow.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/flows/check_uk_visa_flow.rb b/app/flows/check_uk_visa_flow.rb index 95226659e22..63268870eae 100644 --- a/app/flows/check_uk_visa_flow.rb +++ b/app/flows/check_uk_visa_flow.rb @@ -351,7 +351,7 @@ def travel_response_next_route(node) end if calculator.medical_visit? - if calculator.passport_country_in_electronic_visa_waiver_list? + if calculator.passport_country_requires_electronic_travel_authorisation? || calculator.passport_country_in_electronic_visa_waiver_list? next outcome(:outcome_visit_waiver) elsif calculator.passport_country_is_taiwan? next outcome(:outcome_visit_waiver_taiwan)