diff --git a/accounts/usbwallet/hub.go b/accounts/usbwallet/hub.go index 0682310867..3f8c45cd03 100644 --- a/accounts/usbwallet/hub.go +++ b/accounts/usbwallet/hub.go @@ -188,9 +188,7 @@ func (hub *Hub) refreshWallets() { for _, info := range infos { for _, id := range hub.productIDs { // Windows and Macos use UsageID matching, Linux uses Interface matching - if info.ProductID == id && - info.Path != "" && - (slices.Contains(hub.usageIDs, info.UsagePage) || info.Interface == hub.endpointID) { + if info.ProductID == id && info.Path != "" && (slices.Contains(hub.usageIDs, info.UsagePage) || info.Interface == hub.endpointID) { devices = append(devices, info) break }