diff --git a/packages/neuron-ui/src/locales/en.json b/packages/neuron-ui/src/locales/en.json index 0689e923a3..c083028797 100644 --- a/packages/neuron-ui/src/locales/en.json +++ b/packages/neuron-ui/src/locales/en.json @@ -1282,7 +1282,7 @@ "external-node-detected-dialog": { "title": "Detected external node", "body-tips-without-network": "You have selected the internal node but started the external node, if you want to continue to use an external node, please add a new network.", - "body-tips-with-network": "You have currently selected an internal node but started an external node, if you need to continu using the external node please switch to another external network or add a new network.", + "body-tips-with-network": "You have currently selected an internal node but started an external node, if you need to continue using the external node please switch to another external network or add a new network.", "add-network": "Add Network", "ignore-external-node": "Ignore external node" }, diff --git a/packages/neuron-wallet/src/services/hardware/ledger.ts b/packages/neuron-wallet/src/services/hardware/ledger.ts index c7bbaaa58d..4222a195b0 100644 --- a/packages/neuron-wallet/src/services/hardware/ledger.ts +++ b/packages/neuron-wallet/src/services/hardware/ledger.ts @@ -153,6 +153,10 @@ export default class Ledger extends Hardware { takeUntil(timer(2000)), filter>(e => e.type === 'add'), scan, DeviceInfo[]>((acc, e) => { + let product = e.device.product + if (e.device.manufacturer === 'Ledger' && product === 'Nano S+') { + product = 'Nano S Plus' + } return [ ...acc, { @@ -160,7 +164,7 @@ export default class Ledger extends Hardware { descriptor: e.descriptor, vendorId: e.device.vendorId, manufacturer: e.device.manufacturer, - product: e.device.product, + product, addressIndex: 0, addressType: hd.AddressType.Receiving, },