Skip to content

Commit

Permalink
Improve verification instructions (cinnyapp#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroAurora authored Jun 21, 2023
1 parent 715f2bc commit 4c84673
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/app/organisms/settings/DeviceManage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,26 @@ function DeviceManage() {
<div className="device-manage">
<div>
<MenuHeader>Unverified sessions</MenuHeader>
{!isMeVerified && (
<div style={{ padding: 'var(--sp-extra-tight) var(--sp-normal)' }}>
<InfoCard
rounded
variant="primary"
iconSrc={InfoIC}
title="Verify this session either with your Security Key/Phrase here or by initiating emoji verification from a verified session."
/>
</div>
)}
{isMeVerified && unverified.length > 0 && (
<div style={{ padding: 'var(--sp-extra-tight) var(--sp-normal)' }}>
<InfoCard
rounded
variant="surface"
iconSrc={InfoIC}
title="Verify other sessions by emoji verification or remove unfamiliar ones."
/>
</div>
)}
{!isCSEnabled && (
<div style={{ padding: 'var(--sp-extra-tight) var(--sp-normal)' }}>
<InfoCard
Expand Down

0 comments on commit 4c84673

Please sign in to comment.