Improve verification instructions (#1301)
This commit is contained in:
parent
715f2bc907
commit
4c84673bdf
1 changed files with 20 additions and 0 deletions
|
@ -217,6 +217,26 @@ function DeviceManage() {
|
||||||
<div className="device-manage">
|
<div className="device-manage">
|
||||||
<div>
|
<div>
|
||||||
<MenuHeader>Unverified sessions</MenuHeader>
|
<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 && (
|
{!isCSEnabled && (
|
||||||
<div style={{ padding: 'var(--sp-extra-tight) var(--sp-normal)' }}>
|
<div style={{ padding: 'var(--sp-extra-tight) var(--sp-normal)' }}>
|
||||||
<InfoCard
|
<InfoCard
|
||||||
|
|
Loading…
Reference in a new issue