From c6d7c1920231de6d4afd403f97dd9f1740dda054 Mon Sep 17 00:00:00 2001 From: Samuel Young Date: Tue, 6 Jan 2026 09:44:51 +0000 Subject: [PATCH] temp --- app/models/form/lettings/questions/location_id_search.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/models/form/lettings/questions/location_id_search.rb b/app/models/form/lettings/questions/location_id_search.rb index 5e1734b51..752daf291 100644 --- a/app/models/form/lettings/questions/location_id_search.rb +++ b/app/models/form/lettings/questions/location_id_search.rb @@ -16,7 +16,9 @@ class Form::Lettings::Questions::LocationIdSearch < ::Form::Question end def answer_options - answer_opts = { "" => "Select an option" } + answer_opts = { + "" => "Select an option" + } return answer_opts unless ActiveRecord::Base.connected? Location.visible.started_in_2_weeks.select(:id, :postcode, :name).each_with_object(answer_opts) do |location, hsh|