fix(insights): display untracked accounts on sankey by account

This commit is contained in:
Herculino Trotta
2025-08-09 03:42:21 -03:00
parent 55c4b920ee
commit c6cd525c49
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ def index(request):
def sankey_by_account(request):
# Get filtered transactions
transactions = get_transactions(request)
transactions = get_transactions(request, include_untracked_accounts=True)
# Generate Sankey data
sankey_data = generate_sankey_data_by_account(transactions)