Skip to content

Commit

Permalink
Allow Expensify icon to be normal size
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetlath committed Sep 12, 2021
1 parent af19369 commit 8e67307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Icon/BankIcons.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ export default function getBankIcon(bankName, isCard) {
bankIcon.icon = getAssetIcon(bankName.toLowerCase(), isCard);
}

// For default icon & expensify (for now) the icon size should not be set.
if (![Expensify, CreditCard, Bank].includes(bankIcon.icon)) {
// For default icons the icon size should not be set.
if (![CreditCard, Bank].includes(bankIcon.icon)) {
bankIcon.iconSize = variables.iconSizeExtraLarge;
}

Expand Down

0 comments on commit 8e67307

Please sign in to comment.