Commit f76aea9 1 parent 36c6ada commit f76aea9 Copy full SHA for f76aea9
File tree 3 files changed +4
-7
lines changed
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import React, {
6
6
useState ,
7
7
} from 'react' ;
8
8
import { useTranslation } from 'react-i18next' ;
9
- import { StyleSheet , View } from 'react-native' ;
9
+ import { StyleSheet , TouchableOpacity , View } from 'react-native' ;
10
10
11
11
import BottomSheetNavigationHeader from '../../../components/BottomSheetNavigationHeader' ;
12
12
import GradientView from '../../../components/GradientView' ;
@@ -25,7 +25,6 @@ import {
25
25
unitSelector ,
26
26
} from '../../../store/reselect/settings' ;
27
27
import { IColors } from '../../../styles/colors' ;
28
- import { TouchableOpacity } from '../../../styles/components' ;
29
28
import { Caption13Up } from '../../../styles/text' ;
30
29
import { convertToSats } from '../../../utils/conversion' ;
31
30
import { showToast } from '../../../utils/notifications' ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import React, {
7
7
useEffect ,
8
8
} from 'react' ;
9
9
import { useTranslation } from 'react-i18next' ;
10
- import { StyleSheet , View } from 'react-native' ;
10
+ import { StyleSheet , TouchableOpacity , View } from 'react-native' ;
11
11
12
12
import BottomSheetNavigationHeader from '../../../components/BottomSheetNavigationHeader' ;
13
13
import GradientView from '../../../components/GradientView' ;
@@ -25,7 +25,6 @@ import {
25
25
unitSelector ,
26
26
} from '../../../store/reselect/settings' ;
27
27
import { IColors } from '../../../styles/colors' ;
28
- import { TouchableOpacity } from '../../../styles/components' ;
29
28
import { Caption13Up } from '../../../styles/text' ;
30
29
import { convertToSats } from '../../../utils/conversion' ;
31
30
import { getNumberPadText } from '../../../utils/numberpad' ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import React, {
8
8
useEffect ,
9
9
} from 'react' ;
10
10
import { useTranslation } from 'react-i18next' ;
11
- import { StyleSheet , View } from 'react-native' ;
11
+ import { StyleSheet , TouchableOpacity , View } from 'react-native' ;
12
12
13
13
import BottomSheetNavigationHeader from '../../../components/BottomSheetNavigationHeader' ;
14
14
import ContactImage from '../../../components/ContactImage' ;
@@ -42,7 +42,6 @@ import {
42
42
utxosSelector ,
43
43
} from '../../../store/reselect/wallet' ;
44
44
import { IColors } from '../../../styles/colors' ;
45
- import { TouchableOpacity } from '../../../styles/components' ;
46
45
import { Caption13Up } from '../../../styles/text' ;
47
46
import { convertToSats } from '../../../utils/conversion' ;
48
47
import { showToast } from '../../../utils/notifications' ;
@@ -257,7 +256,7 @@ const Amount = ({ navigation }: SendScreenProps<'Amount'>): ReactElement => {
257
256
258
257
< View style = { styles . numberPad } testID = "SendAmountNumberPad" >
259
258
< View style = { styles . actions } >
260
- < TouchableOpacity color = "transparent" onPress = { onMaxAmount } >
259
+ < TouchableOpacity onPress = { onMaxAmount } >
261
260
< Caption13Up style = { styles . availableAmountText } color = "secondary" >
262
261
{ t ( 'send_available' ) }
263
262
</ Caption13Up >
You can’t perform that action at this time.
0 commit comments