1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-12 09:28:10 +00:00

feat(contacts): improve confirm_new_contact

This commit is contained in:
obrusvit 2024-12-11 14:36:35 +01:00
parent 7c375bdc07
commit 4ca2e71969

View File

@ -160,10 +160,14 @@ async def confirm_new_contact(
info_items.append(("Path", path))
if account:
info_items.append(("Account", account))
subtitle = "New contact"
await confirm_value(
title="New contact",
title="npub",
subtitle=subtitle,
value=contact_id,
description="NPub",
# description="NPub",
description="",
br_name="confirm_new_contact",
value_text_mono=True,
info_items=info_items or None,
@ -172,9 +176,10 @@ async def confirm_new_contact(
chunkify=chunkify,
)
await confirm_value(
title="New contact",
title="Label",
subtitle=subtitle,
value=label,
description="Contact label",
description="",
br_name="confirm_new_contact",
value_text_mono=False,
info_items=info_items or None,