UI tweak - single checkmark for either US proxy option (#4160)

This commit is contained in:
Marc Kelechava
2025-12-01 19:32:13 -08:00
committed by GitHub
parent 8a4f42ceec
commit 18a435e72e

View File

@@ -78,7 +78,8 @@ export function GeoTargetSelector({
return (
value.country === itemValue.country &&
value.subdivision === itemValue.subdivision &&
value.city === itemValue.city
value.city === itemValue.city &&
Boolean(value.isISP) === Boolean(itemValue.isISP)
);
};