Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

Commit 7321e0d

Browse files
Shpigfordclaude
andcommitted
Increase max loan amount to $10M in early mortgage payoff calculator
The previous limit of $1M was causing validation errors for users with higher-value mortgages. Increased to $10M to accommodate modern housing market prices. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 188544b commit 7321e0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/presenters/tool/presenter/early_mortgage_payoff_calculator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Tool::Presenter::EarlyMortgagePayoffCalculator < Tool::Presenter
2-
attribute :loan_amount, :tool_float, default: 500_000, min: 0.0, max: 1_000_000.0
2+
attribute :loan_amount, :tool_float, default: 500_000, min: 0.0, max: 10_000_000.0
33
attribute :extra_payment, :tool_float, default: 500.0
44

55
attribute :interest_rate, :tool_percentage, default: 6.5

0 commit comments

Comments
 (0)