Show devices without encryption support separately from unverified session (#499)
* Show devices without encryption support separately * Fix typo * Don't show sessions without encryption support in red
This commit is contained in:
@@ -92,7 +92,7 @@ function ProfileAvatarMenu() {
|
||||
|
||||
function CrossSigninAlert() {
|
||||
const deviceList = useDeviceList();
|
||||
const unverified = deviceList?.filter((device) => !isCrossVerified(device.device_id));
|
||||
const unverified = deviceList?.filter((device) => isCrossVerified(device.device_id) === false);
|
||||
|
||||
if (!unverified?.length) return null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user