We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 765b859 commit f701bddCopy full SHA for f701bdd
packages/uhk-web/src/app/store/effects/device.ts
@@ -16,6 +16,8 @@ import {
16
shouldUpgradeAgent,
17
shouldUpgradeFirmware,
18
UdevRulesInfo,
19
+ UHK_60_DEVICE,
20
+ UHK_60_V2_DEVICE,
21
UHK_80_DEVICE,
22
UserConfiguration
23
} from 'uhk-common';
@@ -118,7 +120,7 @@ export class DeviceEffects {
118
120
ofType(ActionTypes.CheckAreHostConnectionsPaired, DongleActions.DonglePairingSuccess),
119
121
withLatestFrom(this.store.select(getConnectedDevice), this.store.select(getHostConnections)),
122
tap(([_, connectedDevice, hostConnections]) => {
- if (connectedDevice?.id !== UHK_80_DEVICE.id) {
123
+ if (connectedDevice?.id === UHK_60_DEVICE.id || connectedDevice?.id === UHK_60_V2_DEVICE.id) {
124
return
125
}
126
0 commit comments