Skip to content

Commit

Permalink
Improve wording related to the new device settings (#728)
Browse files Browse the repository at this point in the history
It was unclear, which device was being protected. Also slightly changed the message explaining why the last device cannot be removed.
  • Loading branch information
frederikrothenberger authored Jul 5, 2022
1 parent b2a8760 commit d0be7f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/frontend/src/flows/manage/deviceSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ const pageContent = (
: ""}
${!isOnlyDevice && isProtected(device)
? html`<p>
Your device is protected and you will be prompted to authenticate with
it before removal.
This ${isRecovery(device) ? device.alias : "device"} is protected and
you will be prompted to authenticate with it before removal.
</p>`
: ""}
${isOnlyDevice
? html`<p>This is your last device. You cannot remove it.</p>
<p>Without devices your anchor would be useless.</p>`
<p>Without devices your anchor would be inaccessible.</p>`
: ""}
<button data-action="back">Back</button>
</div>
Expand Down

0 comments on commit d0be7f3

Please sign in to comment.