Skip to content

Commit 2e87383

Browse files
authored
fix(core): disable tips when input passphrase on host (#345)
1 parent 5b0089d commit 2e87383

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/apps/common/passphrase.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ async def _request_from_user(ctx: wire.Context) -> str:
3737
async def _request_on_host(ctx: wire.Context) -> str:
3838
from trezor.messages import PassphraseAck, PassphraseRequest
3939

40-
_entry_dialog()
40+
# disable passphrase entry dialog for now
41+
# _entry_dialog()
4142

4243
request = PassphraseRequest()
4344
ack = await ctx.call(request, PassphraseAck)

0 commit comments

Comments
 (0)