Skip to content

Commit

Permalink
Merge pull request #30589 from neonbhai/BA-icon-style-changes
Browse files Browse the repository at this point in the history
BA icon style fix
  • Loading branch information
marcaaron authored Oct 31, 2023
2 parents d74a9d1 + 0619bf3 commit cd2dcfb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/AddPlaidBankAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function AddPlaidBankAccount({
value: account.plaidAccountID,
label: `${account.addressName} ${account.mask}`,
}));
const {icon, iconSize} = getBankIcon();
const {icon, iconSize, iconStyles} = getBankIcon();
const plaidErrors = lodashGet(plaidData, 'errors');
const plaidDataErrorMessage = !_.isEmpty(plaidErrors) ? _.chain(plaidErrors).values().first().value() : '';
const bankName = lodashGet(plaidData, 'bankName');
Expand Down Expand Up @@ -236,6 +236,7 @@ function AddPlaidBankAccount({
src={icon}
height={iconSize}
width={iconSize}
additionalStyles={iconStyles}
/>
<Text style={[styles.ml3, styles.textStrong]}>{bankName}</Text>
</View>
Expand Down

0 comments on commit cd2dcfb

Please sign in to comment.