File tree Expand file tree Collapse file tree 1 file changed +28
-26
lines changed
apps/mobile/src/features/account Expand file tree Collapse file tree 1 file changed +28
-26
lines changed Original file line number Diff line number Diff line change @@ -56,32 +56,34 @@ export function AccountsWidget() {
56
56
) }
57
57
</ Box >
58
58
) }
59
- < Box my = "3" px = "5" flexDirection = "row" gap = "2" >
60
- < ButtonV2
61
- onPress = { ( ) => {
62
- sendSheetRef . current ?. present ( ) ;
63
- } }
64
- minWidth = { 86 }
65
- size = "sm"
66
- buttonState = "default"
67
- title = { t ( {
68
- id : 'general.send' ,
69
- message : `Send` ,
70
- } ) }
71
- />
72
- < ButtonV2
73
- onPress = { ( ) => {
74
- receiveSheetRef . current ?. present ( ) ;
75
- } }
76
- minWidth = { 86 }
77
- size = "sm"
78
- buttonState = "outline"
79
- title = { t ( {
80
- id : 'general.receive' ,
81
- message : `Receive` ,
82
- } ) }
83
- />
84
- </ Box >
59
+ { wallets . hasWallets && (
60
+ < Box my = "3" px = "5" flexDirection = "row" gap = "2" >
61
+ < ButtonV2
62
+ onPress = { ( ) => {
63
+ sendSheetRef . current ?. present ( ) ;
64
+ } }
65
+ minWidth = { 86 }
66
+ size = "sm"
67
+ buttonState = "default"
68
+ title = { t ( {
69
+ id : 'general.send' ,
70
+ message : `Send` ,
71
+ } ) }
72
+ />
73
+ < ButtonV2
74
+ onPress = { ( ) => {
75
+ receiveSheetRef . current ?. present ( ) ;
76
+ } }
77
+ minWidth = { 86 }
78
+ size = "sm"
79
+ buttonState = "outline"
80
+ title = { t ( {
81
+ id : 'general.receive' ,
82
+ message : `Receive` ,
83
+ } ) }
84
+ />
85
+ </ Box >
86
+ ) }
85
87
</ Box >
86
88
< Widget . Body >
87
89
< ScrollView
You can’t perform that action at this time.
0 commit comments