diff --git a/app/views/lottery_entrants/_service_status_indicator.html.erb b/app/views/lottery_entrants/_service_status_indicator.html.erb index be0fbacb8..7bf4d03f9 100644 --- a/app/views/lottery_entrants/_service_status_indicator.html.erb +++ b/app/views/lottery_entrants/_service_status_indicator.html.erb @@ -1,5 +1,7 @@ <%# locals: (entrant:) %> <%= content_tag(:div, id: dom_id(entrant, :service_status_indicator)) do %> - <%= service_form_status_with_icon(entrant.service_detail) %> + <% unless entrant.withdrawn? %> + <%= service_form_status_with_icon(entrant.service_detail) %> + <% end %> <% end %>