fix(banking): correct backfill-ibans endpoint, handle expired sessions, and update labels (#223)

## Summary

- Corrects the `/accounts/{id}` endpoint to `/accounts/{id}/details` in
`EnableBankingProvider`.
- Gracefully handles 404 responses (expired/revoked sessions) during
IBAN backfill, skipping them without counting as failures.
- Updates the \"Re-evaluate All Expenses\" UI label to \"Update
categories automatically\" (EN) / \"Actualizar categorías
automáticamente\" (ES).
This commit is contained in:
Víctor Falcón 2026-03-12 12:23:32 +00:00 committed by GitHub
parent 08dfb07a90
commit b92c4ed149
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -902,7 +902,7 @@
"Profile Settings": "Configuración del Perfil",
"Profile information": "Información del perfil",
"Protect your privacy with no tracking or third-party analytics.": "Protege tu privacidad sin rastreo ni análisis de terceros.",
"Re-evaluate All Expenses": "Reevaluar Todos los Gastos",
"Update categories automatically": "Actualizar categorías automáticamente",
"Re-evaluate rules": "Reevaluar reglas",
"Reactivate Your Subscription": "Reactiva Tu Suscripción",
"Ready to take control of your finances?": "¿Listo para tomar el control de tus finanzas?",

View File

@ -185,7 +185,7 @@ export function TransactionActionsMenu({
disabled={isReEvaluating}
>
<WandSparkles className="mr-2 h-4 w-4" />
{__('Re-evaluate All Expenses')}
{__('Update categories automatically')}
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>