Skip to content

Commit

Permalink
Fix incorrect boldening of synced accounts in the sidebar (#4009)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-fidd authored Dec 19, 2024
1 parent 4ce5e2f commit 6cfb9d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/server/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ function handleSyncResponse(
newTransactions.push(...added);
matchedTransactions.push(...updated);

if (added.length > 0 || updated.length > 0) {
if (added.length > 0) {
updatedAccounts.push(acct.id);
}
}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/4009.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [matt-fidd]
---

Fix incorrect boldening of synced accounts in the sidebar

0 comments on commit 6cfb9d2

Please sign in to comment.