1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 05:25:24 +02:00

Fix bug where transactions were duplicated in import confirm (#941)

* Fix bug where transactions were duplicated in import confirm

Signed-off-by: Luke Hurst <hurstlj@umich.edu>

* Update imports_test.rb

Signed-off-by: Luke Hurst <hurstlj@umich.edu>

---------

Signed-off-by: Luke Hurst <hurstlj@umich.edu>
This commit is contained in:
Luke Hurst 2024-07-03 14:44:35 -07:00 committed by GitHub
parent f1d0a62ac7
commit cf23453d93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -13,7 +13,7 @@
<% transaction_entries.group_by(&:date).each do |date, transactions| %>
<%= render "account/entries/entry_group",
date: date,
entries: transaction_entries,
entries: transactions,
show_tags: true,
selectable: false,
editable: false %>