From 8b32825e737bd9822cc6eebd543bcf051e1c7546 Mon Sep 17 00:00:00 2001 From: thisames Date: Fri, 24 Jan 2025 22:28:45 -0300 Subject: [PATCH] FIX: handle platform-specific icon compatibility for delete button (#7530) --- components/ManageWalletsListItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ManageWalletsListItem.tsx b/components/ManageWalletsListItem.tsx index 07b7d17d0..2d141a922 100644 --- a/components/ManageWalletsListItem.tsx +++ b/components/ManageWalletsListItem.tsx @@ -1,5 +1,5 @@ import React, { useCallback, useState } from 'react'; -import { View, StyleSheet, ViewStyle, TouchableOpacity, ActivityIndicator } from 'react-native'; +import { View, StyleSheet, ViewStyle, TouchableOpacity, ActivityIndicator, Platform } from 'react-native'; import { Icon, ListItem } from '@rneui/base'; import { ExtendedTransaction, LightningTransaction, TWallet } from '../class/wallets/types'; import { WalletCarouselItem } from './WalletsCarousel'; @@ -66,7 +66,7 @@ const RightSwipeContent: React.FC> = ({ onPress }) => accessibilityRole="button" accessibilityLabel="Delete Wallet" > - + );