fix: increase initial bank sync window from 90 to 120 days (#170)

90 days missed transactions from late December for users connecting
in early April.

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jakob Wennberg
2026-04-03 13:53:29 +02:00
committed by GitHub
co-authored by Claude Opus 4.6
parent f69f1daac3
commit f95e6437f2
+1 -1
View File
@@ -34,7 +34,7 @@ export default function BankingSettingsPage() {
fetch('/api/extensions/ext/enable-banking/sync', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ connection_id: connectionId, days_back: 90 }),
body: JSON.stringify({ connection_id: connectionId, days_back: 120 }),
})
.then(res => res.json())
.then(data => {