From da2d5997ac69680c83bf01afbc476b356cf742be Mon Sep 17 00:00:00 2001 From: Tyler Myracle Date: Wed, 17 Jan 2024 11:19:10 -0600 Subject: [PATCH] use teller in institution grid --- .../src/accounts-manager/InstitutionGrid.tsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libs/client/features/src/accounts-manager/InstitutionGrid.tsx b/libs/client/features/src/accounts-manager/InstitutionGrid.tsx index bdb55845..4321a6cf 100644 --- a/libs/client/features/src/accounts-manager/InstitutionGrid.tsx +++ b/libs/client/features/src/accounts-manager/InstitutionGrid.tsx @@ -14,48 +14,48 @@ const banks: GridImage[] = [ src: 'chase-bank.png', alt: 'Chase Bank', institution: { - provider: 'PLAID', - providerId: 'ins_56', + provider: 'TELLER', + providerId: 'chase', }, }, { src: 'capital-one.png', alt: 'Capital One Bank', institution: { - provider: 'PLAID', - providerId: 'ins_128026', + provider: 'TELLER', + providerId: 'capital_one', }, }, { src: 'wells-fargo.png', alt: 'Wells Fargo Bank', institution: { - provider: 'PLAID', - providerId: 'ins_127991', + provider: 'TELLER', + providerId: 'wells_fargo', }, }, { src: 'american-express.png', alt: 'American Express Bank', institution: { - provider: 'PLAID', - providerId: 'ins_10', + provider: 'TELLER', + providerId: 'amex', }, }, { src: 'bofa.png', alt: 'Bank of America', institution: { - provider: 'PLAID', - providerId: 'ins_127989', + provider: 'TELLER', + providerId: 'bank_of_america', }, }, { src: 'usaa-bank.png', alt: 'USAA Bank', institution: { - provider: 'PLAID', - providerId: 'ins_7', + provider: 'TELLER', + providerId: 'usaa', }, }, ]