Skip to content

Commit

Permalink
SFT-1728: improved temporary seed question
Browse files Browse the repository at this point in the history
  • Loading branch information
mjg-foundation committed Jul 4, 2024
1 parent 68e88ee commit 61f28d9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def __init__(self, refresh_cards_when_done=False, autobackup=True, full_backup=F
async def choose_temporary(self):
from pages import ChooserPage

text = 'Import and save a seed, or import one temporarily?'
options = [{'label': 'Permanent', 'value': True},
{'label': 'Temporary', 'value': False}]
text = 'Save this seed, or import temporarily?'
options = [{'label': 'Save Seed', 'value': True},
{'label': 'Temporary Seed', 'value': False}]

permanent = await ChooserPage(text=text,
icon=lv.LARGE_ICON_QUESTION,
Expand Down

0 comments on commit 61f28d9

Please sign in to comment.