Skip to content

Commit

Permalink
fix lint from merged file
Browse files Browse the repository at this point in the history
  • Loading branch information
attyluccio committed Oct 20, 2024
1 parent 6d921f7 commit bd94fa3
Showing 1 changed file with 4 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

0 comments on commit bd94fa3

Please sign in to comment.