Skip to content

Commit aa9e173

Browse files
authored
fix: issue #5802 (#5823)
1 parent 8b4dc0b commit aa9e173

File tree

1 file changed

+1
-2
lines changed
  • src/shared/components/Settings/Tools/Devices

1 file changed

+1
-2
lines changed

src/shared/components/Settings/Tools/Devices/index.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ export default class Devices extends ConsentComponent {
9797
for (const item of deviceItems) {
9898
if (item.deviceType === newDevice.deviceType
9999
&& item.manufacturer === newDevice.manufacturer
100-
&& item.model === newDevice.model
101-
&& item.operatingSystem === newDevice.operatingSystem) {
100+
&& item.model === newDevice.model) {
102101
exist = true;
103102
break;
104103
}

0 commit comments

Comments
 (0)