File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import React, {
66 useState ,
77} from 'react' ;
88import { useTranslation } from 'react-i18next' ;
9- import { StyleSheet , View } from 'react-native' ;
9+ import { StyleSheet , TouchableOpacity , View } from 'react-native' ;
1010
1111import BottomSheetNavigationHeader from '../../../components/BottomSheetNavigationHeader' ;
1212import GradientView from '../../../components/GradientView' ;
@@ -25,7 +25,6 @@ import {
2525 unitSelector ,
2626} from '../../../store/reselect/settings' ;
2727import { IColors } from '../../../styles/colors' ;
28- import { TouchableOpacity } from '../../../styles/components' ;
2928import { Caption13Up } from '../../../styles/text' ;
3029import { convertToSats } from '../../../utils/conversion' ;
3130import { showToast } from '../../../utils/notifications' ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import React, {
77 useEffect ,
88} from 'react' ;
99import { useTranslation } from 'react-i18next' ;
10- import { StyleSheet , View } from 'react-native' ;
10+ import { StyleSheet , TouchableOpacity , View } from 'react-native' ;
1111
1212import BottomSheetNavigationHeader from '../../../components/BottomSheetNavigationHeader' ;
1313import GradientView from '../../../components/GradientView' ;
@@ -25,7 +25,6 @@ import {
2525 unitSelector ,
2626} from '../../../store/reselect/settings' ;
2727import { IColors } from '../../../styles/colors' ;
28- import { TouchableOpacity } from '../../../styles/components' ;
2928import { Caption13Up } from '../../../styles/text' ;
3029import { convertToSats } from '../../../utils/conversion' ;
3130import { getNumberPadText } from '../../../utils/numberpad' ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import React, {
88 useEffect ,
99} from 'react' ;
1010import { useTranslation } from 'react-i18next' ;
11- import { StyleSheet , View } from 'react-native' ;
11+ import { StyleSheet , TouchableOpacity , View } from 'react-native' ;
1212
1313import BottomSheetNavigationHeader from '../../../components/BottomSheetNavigationHeader' ;
1414import ContactImage from '../../../components/ContactImage' ;
@@ -42,7 +42,6 @@ import {
4242 utxosSelector ,
4343} from '../../../store/reselect/wallet' ;
4444import { IColors } from '../../../styles/colors' ;
45- import { TouchableOpacity } from '../../../styles/components' ;
4645import { Caption13Up } from '../../../styles/text' ;
4746import { convertToSats } from '../../../utils/conversion' ;
4847import { showToast } from '../../../utils/notifications' ;
@@ -257,7 +256,7 @@ const Amount = ({ navigation }: SendScreenProps<'Amount'>): ReactElement => {
257256
258257 < View style = { styles . numberPad } testID = "SendAmountNumberPad" >
259258 < View style = { styles . actions } >
260- < TouchableOpacity color = "transparent" onPress = { onMaxAmount } >
259+ < TouchableOpacity onPress = { onMaxAmount } >
261260 < Caption13Up style = { styles . availableAmountText } color = "secondary" >
262261 { t ( 'send_available' ) }
263262 </ Caption13Up >
You can’t perform that action at this time.
0 commit comments