From b429e6b70c91b2ec718686ffa171d674d539b7ac Mon Sep 17 00:00:00 2001 From: Kat Date: Tue, 3 Jan 2023 09:38:30 +0000 Subject: [PATCH] Switch the order of sales log sections --- app/models/form_handler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/form_handler.rb b/app/models/form_handler.rb index 3f63b99cd..1afa1d15f 100644 --- a/app/models/form_handler.rb +++ b/app/models/form_handler.rb @@ -22,8 +22,8 @@ class FormHandler sales_sections = [ Form::Sales::Sections::PropertyInformation, Form::Sales::Sections::Household, - Form::Sales::Sections::SaleInformation, Form::Sales::Sections::Finances, + Form::Sales::Sections::SaleInformation, ] current_form = Form.new(nil, current_collection_start_year, sales_sections, "sales") previous_form = Form.new(nil, current_collection_start_year - 1, sales_sections, "sales")