From 02190b58712fdca50c8aa20deaed3b61d738348e Mon Sep 17 00:00:00 2001 From: matejcik Date: Wed, 12 Feb 2025 14:18:52 +0100 Subject: [PATCH] fix(core): do not repeat "cancel backup check" twice on screen --- core/src/trezor/ui/layouts/bolt/recovery.py | 2 +- core/src/trezor/ui/layouts/caesar/recovery.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/trezor/ui/layouts/bolt/recovery.py b/core/src/trezor/ui/layouts/bolt/recovery.py index 614b35f135..1258feb331 100644 --- a/core/src/trezor/ui/layouts/bolt/recovery.py +++ b/core/src/trezor/ui/layouts/bolt/recovery.py @@ -120,7 +120,7 @@ async def _confirm_abort(dry_run: bool = False) -> None: await confirm_action( "abort_recovery", TR.recovery__title_cancel_dry_run, - TR.recovery__cancel_dry_run, + None, description=TR.recovery__wanna_cancel_dry_run, verb=TR.buttons__cancel, br_code=ButtonRequestType.ProtectCall, diff --git a/core/src/trezor/ui/layouts/caesar/recovery.py b/core/src/trezor/ui/layouts/caesar/recovery.py index 36b4505781..a1c8c8e3a5 100644 --- a/core/src/trezor/ui/layouts/caesar/recovery.py +++ b/core/src/trezor/ui/layouts/caesar/recovery.py @@ -85,7 +85,7 @@ async def _confirm_abort(dry_run: bool = False) -> None: await confirm_action( "abort_recovery", TR.recovery__title_cancel_dry_run, - TR.recovery__cancel_dry_run, + None, description=TR.recovery__wanna_cancel_dry_run, verb=TR.buttons__cancel, br_code=ButtonRequestType.ProtectCall,