File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -218,8 +218,8 @@ export default function Settings({ navigation }: ISettingsProps) {
218
218
// Copy lnd log
219
219
const copyLndLog = async ( ) => {
220
220
try {
221
- await NativeModules . LndMobileTools . copyLndLog ( ) ;
222
- toast ( "Copied lnd log file." , undefined , "warning" ) ;
221
+ const filePath = await NativeModules . LndMobileTools . copyLndLog ( ) ;
222
+ toast ( "Copied lnd log file to: " + filePath , undefined , "warning" ) ;
223
223
} catch ( e ) {
224
224
console . error ( e ) ;
225
225
toast ( "Error copying lnd log file." , undefined , "danger" ) ;
@@ -1146,7 +1146,6 @@ Do you wish to proceed?`;
1146
1146
< Left > < Icon style = { style . icon } type = "AntDesign" name = "copy1" /> </ Left >
1147
1147
< Body >
1148
1148
< Text > Copy lnd log to local storage</ Text >
1149
- < Text note = { true } > Reached from /sdcard/BlixtWallet</ Text >
1150
1149
</ Body >
1151
1150
</ ListItem >
1152
1151
}
You can’t perform that action at this time.
0 commit comments