mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
Skip the “Starting Balance” transaction if the balance is 0 (#630)
This commit is contained in:
@@ -861,7 +861,7 @@ handlers['account-create'] = mutator(async function ({
|
||||
transfer_acct: id
|
||||
});
|
||||
|
||||
if (balance != null) {
|
||||
if (balance != null && balance !== 0) {
|
||||
let payee = await getStartingBalancePayee();
|
||||
|
||||
await db.insertTransaction({
|
||||
|
||||
Reference in New Issue
Block a user