summary history files

commit:0dd0ea4888ac38d3661cff9e724ac889dc55286b
date:Sun Sep 8 09:58:41 2024 +1000
parents:86698917fdf9de9dcf1339cd15468dd577532ddd, e9162a8925b212b34c42de39b393e3a5383155c8
Merge branch 'master' into dev
diff --git a/desktop/README.md b/desktop/README.md
line changes: +2/-0
index 33a562b..c06e5d6
--- a/desktop/README.md
+++ b/desktop/README.md
@@ -28,6 +28,8 @@ See [README.md](../README.md) in parent directory.
 
 * [ ] FEAT: transaction attachments should have a size limit
 * [ ] FEAT: Add support for deleting transaction attachments
+* [ ] FEAT: transaction attachments should have a size limit
+* [ ] FEAT: support deleting transaction attachments
 * [ ] FEAT: account matches should not have to be duplicated when matching on
       destination account across multiple source accounts. For example,
       matching for groceries across 2 credit accounts should be a single

diff --git a/desktop/backend/services/transaction_service.go b/desktop/backend/services/transaction_service.go
line changes: +0/-1
index 0372d0b..ed80f7f
--- a/desktop/backend/services/transaction_service.go
+++ b/desktop/backend/services/transaction_service.go
@@ -158,7 +158,6 @@ func (t *transactionService) GetTransactionsAccount(id int64) types.Transactions
 
 	resp.Data = []types.Transaction{}
 	for _, i := range transactions {
-
 		if exists := t.transactionExistsInSlice(i, resp.Data); exists {
 			continue
 		}