Clarify seed phrase QR prompt

This commit is contained in:
thePR0M3TH3AN
2025-07-05 09:25:22 -04:00
parent 20f3e7bc80
commit 5dd49c0cee

View File

@@ -1099,7 +1099,7 @@ class PasswordManager:
print(colored(f"Notes: {notes}", "cyan"))
print(colored("Seed Phrase:", "cyan"))
print(colored(phrase, "yellow"))
if confirm_action("Show QR? (Y/N): "):
if confirm_action("Show Compact Seed QR? (Y/N): "):
from password_manager.seedqr import encode_seedqr
TotpManager.print_qr_code(encode_seedqr(phrase))
@@ -1328,7 +1328,7 @@ class PasswordManager:
)
else:
print(colored(phrase, "yellow"))
if confirm_action("Show QR? (Y/N): "):
if confirm_action("Show Compact Seed QR? (Y/N): "):
from password_manager.seedqr import encode_seedqr
TotpManager.print_qr_code(encode_seedqr(phrase))