From 298e150f43f5e253c8cd08bddfb479cf85c51d78 Mon Sep 17 00:00:00 2001 From: Zach Gollwitzer Date: Mon, 14 Apr 2025 12:51:38 -0400 Subject: [PATCH] Fix stale model reference --- app/models/account.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/account.rb b/app/models/account.rb index 42a9d67f..970c6ee5 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -138,7 +138,7 @@ class Account < ApplicationRecord name: "Initial Balance", amount: initial_balance, currency: currency, - entryable: Account::Valuation.new + entryable: Valuation.new end end