From 3aa2b2d3583a2f0a4bda9dfbd0a5da937ac8f546 Mon Sep 17 00:00:00 2001 From: natdeanlewissoftwire Date: Thu, 8 Jun 2023 15:51:26 +0100 Subject: [PATCH] feat: revert, don't want this in final diff --- app/models/form.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/form.rb b/app/models/form.rb index b1a8802bd..16c896e4c 100644 --- a/app/models/form.rb +++ b/app/models/form.rb @@ -9,7 +9,7 @@ class Form @end_date = if start_year && start_year.to_i > 2022 Time.zone.local(start_year + 1, 6, 9) else - Time.zone.local(start_year + 1, 6, 7) + Time.zone.local(start_year + 1, 8, 7) end @setup_sections = type == "sales" ? [Form::Sales::Sections::Setup.new(nil, nil, self)] : [Form::Lettings::Sections::Setup.new(nil, nil, self)] @form_sections = sections_in_form.map { |sec| sec.new(nil, nil, self) }