diff --git a/src/utils/BucketUtils.js b/src/utils/BucketUtils.js index 5f1b76a81..1d955fba9 100644 --- a/src/utils/BucketUtils.js +++ b/src/utils/BucketUtils.js @@ -272,10 +272,9 @@ const processV3Abstain = (matchResults) => { * @returns boolean */ const isOther = (dataUse) => { - const otherRestrictions = getOr(false)('otherRestrictions')(dataUse); const primaryOther = !isEmpty(getOr('')('other')(dataUse)); const secondaryOther = !isEmpty(getOr('')('secondaryOther')(dataUse)); - return otherRestrictions || primaryOther || secondaryOther; + return primaryOther || secondaryOther; }; /**