Skip to content

Commit

Permalink
SFT-3903: fixed capitalization, implemented Ken's copy suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
mjg-foundation committed Aug 5, 2024
1 parent fe114cf commit a703c9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ports/stm32/boards/Passport/modules/flows/temporary_seed_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def clear_seed(self):
if is_passphrase_active():
text = 'Clear temporary seed? The passphrase applied to it will also be removed.'
else:
text = 'Clear Temporary Seed?'
text = 'Clear temporary seed?'

result = await QuestionPage(text=text).show()

Expand All @@ -51,7 +51,7 @@ async def clear_seed(self):
return

settings.exit_temporary_mode()
await SuccessPage(text='Temporary Seed Cleared').show()
await SuccessPage(text='Temporary seed cleared').show()
await self.finalize()

async def use_child_seed(self):
Expand All @@ -75,7 +75,7 @@ async def use_child_seed(self):
self.set_result(False)
return

(vals, error) = await spinner_task(text='Retrieving Key',
(vals, error) = await spinner_task(text='Retrieving key',
task=self.key_type['task'],
args=[self.key['index']])
pk = vals['priv']
Expand All @@ -85,13 +85,13 @@ async def use_child_seed(self):
return

settings.enter_temporary_mode()
(error,) = await spinner_task('Applying Seed', save_seed_task, args=[pk])
(error,) = await spinner_task('Applying seed', save_seed_task, args=[pk])

if error is not None:
self.set_result(None)
return

await SuccessPage(text='Temporary Seed Applied').show()
await SuccessPage(text='Temporary seed applied').show()
await self.finalize(child=True)

async def finalize(self, child=False):
Expand Down

0 comments on commit a703c9b

Please sign in to comment.