Skip to content

Commit

Permalink
fix: create test budget
Browse files Browse the repository at this point in the history
  • Loading branch information
UnderKoen committed Oct 9, 2024
1 parent 8d40dd9 commit a2a20f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/loot-core/src/server/accounts/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ export async function matchTransactions(
subtransactions,
} of normalized) {
// Run the rules
const trans = runRules(originalTrans);
const trans = await runRules(originalTrans);

let match = null;
let fuzzyDataset = null;
Expand Down Expand Up @@ -605,7 +605,7 @@ export async function addTransactions(

for (const { trans: originalTrans, subtransactions } of normalized) {
// Run the rules
const trans = runRules(originalTrans);
const trans = await runRules(originalTrans);

const finalTransaction = {
id: uuidv4(),
Expand Down

0 comments on commit a2a20f0

Please sign in to comment.