mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-18 05:12:47 +01:00
FIX: CC
This commit is contained in:
parent
4ab2d36612
commit
9335bd0960
@ -84,11 +84,13 @@ const OutputList = ({
|
||||
|
||||
return (
|
||||
<RNElementsListItem bottomDivider onPress={onPress} containerStyle={selected ? oStyles.containerSelected : oStyles.container}>
|
||||
<Avatar
|
||||
rounded
|
||||
overlayContainerStyle={oStyles.avatar}
|
||||
<RNElementsListItem.CheckBox
|
||||
checkedColor="#0070FF"
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
checked={selected}
|
||||
onPress={selected ? onDeSelect : onSelect}
|
||||
icon={selected ? { name: 'check' } : undefined}
|
||||
/>
|
||||
<RNElementsListItem.Content>
|
||||
<RNElementsListItem.Title style={oStyles.amount}>{amount}</RNElementsListItem.Title>
|
||||
|
@ -115,7 +115,7 @@ const ReorderWallets: React.FC = () => {
|
||||
walletType: wallet.type,
|
||||
});
|
||||
},
|
||||
[navigate],
|
||||
[goBack, navigate],
|
||||
);
|
||||
|
||||
const isDraggingDisabled = state.searchQuery.length > 0 || state.isSearchFocused;
|
||||
|
Loading…
Reference in New Issue
Block a user