Skip to content

Commit

Permalink
clean up accidental push (actualbudget#3695)
Browse files Browse the repository at this point in the history
* clean up accidental commit

* move
  • Loading branch information
youngcw authored Oct 20, 2024
1 parent 259beb7 commit 03f2cab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/loot-core/src/server/budget/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ function getBudgetTable(): string {
}

export function isReflectBudget(): boolean {
const budgetType =
db.firstSync(`SELECT value FROM preferences WHERE id = ?`, [
'budgetType',
]);
const budgetType = db.firstSync(
`SELECT value FROM preferences WHERE id = ?`,
['budgetType'],
);
const val = budgetType ? budgetType.value : 'rollover';
return val === 'report';
}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3695.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [youngcw]
---

Fix broken budget copy in tracking budget

0 comments on commit 03f2cab

Please sign in to comment.