Skip to content

Commit

Permalink
Andri/yubikey test feature (#2772)
Browse files Browse the repository at this point in the history
add cross_platform to filter
  • Loading branch information
LXIF authored Jan 10, 2025
1 parent e2ad1f8 commit 8671b4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/frontend/src/utils/iiConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,9 @@ export class Connection {

if (HARDWARE_KEY_TEST.isEnabled()) {
devices = devices.filter(
(device) => Object.keys(device.key_type)[0] === "unknown"
(device) =>
Object.keys(device.key_type)[0] === "unknown" ||
Object.keys(device.key_type)[0] === "cross_platform"
);
}

Expand Down

0 comments on commit 8671b4f

Please sign in to comment.