We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f326f1c commit 56ba1b3Copy full SHA for 56ba1b3
packages/neuron-wallet/src/services/hardware/ledger.ts
@@ -153,9 +153,9 @@ export default class Ledger extends Hardware {
153
takeUntil(timer(2000)),
154
filter<DescriptorEvent<any>>(e => e.type === 'add'),
155
scan<DescriptorEvent<any>, DeviceInfo[]>((acc, e) => {
156
- let product = e.device.product;
157
- if(e.device.manufacturer === 'Ledger' && product === "Nano S+") {
158
- product = "Nano S Plus"
+ let product = e.device.product
+ if (e.device.manufacturer === 'Ledger' && product === 'Nano S+') {
+ product = 'Nano S Plus'
159
}
160
return [
161
...acc,
0 commit comments