diff --git a/shared/auth.py b/shared/auth.py index 7f998d38..378f9d81 100644 --- a/shared/auth.py +++ b/shared/auth.py @@ -315,7 +315,7 @@ class ApproveTransaction(UserAuthorizedAction): from ux_q1 import QRScannerInteraction msg = await QRScannerInteraction().scan_text('Scan message from a QR code') else: - choices = await file_picker(suffix='.txt', ux=False) + choices = await file_picker(suffix='.txt', ux=False, **ch) target = "%s.txt" % b2a_hex(self.psbt.por322_msg_hash).decode() for fname, dir, _ in choices: @@ -323,7 +323,7 @@ class ApproveTransaction(UserAuthorizedAction): fn = dir + "/" + fname break else: - fn = await file_picker(choices=choices) + fn = await file_picker(choices=choices, **ch) if not fn: return