Skip to content

Commit

Permalink
Declare payee key in subtransaction
Browse files Browse the repository at this point in the history
as the payee variable

As per [this suggestion](https://github.com/actualbudget/actual/pull/1836/files#r1382467439)
  • Loading branch information
Marethyu1 committed Nov 4, 2023
1 parent 343a4dc commit 9f32cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/server/importers/ynab5.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ async function importTransactions(
amount: amountFromYnab(subtrans.amount),
category: entityIdMap.get(subtrans.category_id) || null,
notes: subtrans.memo,
payee: payee,
payee,
};
})
: null,
Expand Down

0 comments on commit 9f32cce

Please sign in to comment.