1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Enable Ledger hardware wallet support on Firefox

Firefox 67 support U2F by default
This commit is contained in:
Mathew Kamkar 2019-05-24 21:42:48 -07:00 committed by GitHub
parent d2d6b547b6
commit c7266067ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,12 +51,6 @@ class ConnectHardwareForm extends Component {
}
connectToHardwareWallet = (device) => {
// Ledger hardware wallets are not supported on firefox
if (getPlatform() === PLATFORM_FIREFOX && device === 'ledger') {
this.setState({ browserSupported: false, error: null})
return null
}
if (this.state.accounts.length) {
return null
}