Fix Huntington profile detection: remove optional Split/Tags columns
Huntington CSVs don't always include Split and Tags headers, causing detection to fail and fall back to the manual mapper with wrong defaults. Detect on Date, Description, Amount which are always present. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -53,7 +53,7 @@ export const bankProfiles: BankProfile[] = [
|
|||||||
descriptionColumn: 'Description',
|
descriptionColumn: 'Description',
|
||||||
amountColumn: 'Amount',
|
amountColumn: 'Amount',
|
||||||
invertAmountSign: true, // negative = DEBIT (withdrawal), positive = CREDIT (deposit)
|
invertAmountSign: true, // negative = DEBIT (withdrawal), positive = CREDIT (deposit)
|
||||||
detectColumns: ['Date', 'Description', 'Amount', 'Split', 'Tags'],
|
detectColumns: ['Date', 'Description', 'Amount'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'fidelity',
|
id: 'fidelity',
|
||||||
|
|||||||
Reference in New Issue
Block a user