mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-26 08:55:56 +01:00
FIX: typo that might cause incorrect 'openSignedTransaction' procedure
This commit is contained in:
parent
083d240c4a
commit
44a1b7a98c
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ const PsbtWithHardwareWallet = () => {
|
|||
const openSignedTransaction = async () => {
|
||||
try {
|
||||
const res = await DocumentPicker.pickSingle({
|
||||
type: Platform.OS === 'ios' ? ['io.bluewallet.psbt', 'io.bluewallt.psbt.txn'] : [DocumentPicker.types.allFiles],
|
||||
type: Platform.OS === 'ios' ? ['io.bluewallet.psbt', 'io.bluewallet.psbt.txn'] : [DocumentPicker.types.allFiles],
|
||||
});
|
||||
const file = await RNFS.readFile(res.uri);
|
||||
if (file) {
|
||||
|
|
Loading…
Add table
Reference in a new issue