06/04 Optimize app

This commit is contained in:
2026-06-04 10:48:31 -04:00
parent 3abd073437
commit 8bed900297
6 changed files with 22 additions and 11 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ def map_accounts():
for sa in schwab_accounts:
val = request.form.get(f'pfm_account_{sa.id}', '')
if val == 'new':
pfm_type = ACCOUNT_TYPE_MAP.get(sa.account_type, 'investment')
pfm_type = ACCOUNT_TYPE_MAP.get(sa.account_type, 'other')
new_acct = Account(
name=sa.account_name,
account_type=pfm_type,