diff --git a/app/models/form/sales/questions/mortgage_amount.rb b/app/models/form/sales/questions/mortgage_amount.rb index b36acc15d..446583921 100644 --- a/app/models/form/sales/questions/mortgage_amount.rb +++ b/app/models/form/sales/questions/mortgage_amount.rb @@ -25,7 +25,7 @@ class Form::Sales::Questions::MortgageAmount < ::Form::Question end def top_guidance_partial - return "financial_calculations_shared_ownership" if ownershipsch == 1 - return "financial_calculations_discounted_ownership" if ownershipsch == 2 + return "financial_calculations_shared_ownership" if @ownershipsch == 1 + return "financial_calculations_discounted_ownership" if @ownershipsch == 2 end end