1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-30 09:11:07 +00:00

fix(core): improve ButtonRequest.name in backup confirmation

[no changelog]
This commit is contained in:
matejcik 2025-01-13 13:49:30 +01:00 committed by matejcik
parent 4e852231ab
commit 38e362cd5b
3 changed files with 3 additions and 3 deletions

View File

@ -372,7 +372,7 @@ async def show_share_confirmation_success(
) )
text = TR.reset__continue_with_next_share text = TR.reset__continue_with_next_share
return await show_success("success_recovery", text, subheader) return await show_success("success_share_confirm", text, subheader)
async def show_share_confirmation_failure() -> None: async def show_share_confirmation_failure() -> None:

View File

@ -372,7 +372,7 @@ async def show_share_confirmation_success(
) )
) )
await show_success("success_recovery", title, subheader=footer_description) await show_success("success_share_confirm", title, subheader=footer_description)
def show_share_confirmation_failure() -> Awaitable[None]: def show_share_confirmation_failure() -> Awaitable[None]:

View File

@ -339,7 +339,7 @@ async def show_share_confirmation_success(
) )
text = TR.reset__continue_with_next_share text = TR.reset__continue_with_next_share
return await show_success("success_recovery", text, subheader) return await show_success("success_share_confirm", text, subheader)
async def show_share_confirmation_failure() -> None: async def show_share_confirmation_failure() -> None: