Update WalletsCarousel.js

This commit is contained in:
Marcos Rodriguez Velez 2023-04-12 11:01:55 -05:00
parent ea816192ce
commit aef1e65e65

View file

@ -263,7 +263,7 @@ const WalletsCarousel = forwardRef((props, ref) => {
({ item, index }) =>
item ? (
<WalletCarouselItem
isSelectedWallet={!props.horizontal && props.selectedWallet && item ? props.selectedWallet === item.getID() : undefined}
isSelectedWallet={!props.horizontal && props.selectedWallet ? props.selectedWallet === item.getID() : undefined}
item={item}
index={index}
handleLongPress={props.handleLongPress}