diff --git a/src/utils/device.js b/src/utils/device.js index 0b74a21a..3649620e 100644 --- a/src/utils/device.js +++ b/src/utils/device.js @@ -79,7 +79,8 @@ export const getStatusName = (deviceStatus: string, intl: IntlShape): string => } }; -export const isWebUSB = (transport: Transport) => !!(transport.type && transport.type === 'webusb'); +export const isWebUSB = (transport: Transport) => + !!(transport.type && transport.type === 'WebUsbPlugin'); export const isDisabled = ( selectedDevice: TrezorDevice,