diff --git a/changes/15802-remove-not-updating-policies-callout b/changes/15802-remove-not-updating-policies-callout new file mode 100644 index 0000000000..5b417697d8 --- /dev/null +++ b/changes/15802-remove-not-updating-policies-callout @@ -0,0 +1 @@ +On Host Details Policies page, removed callout box with a broken link. \ No newline at end of file diff --git a/frontend/pages/hosts/details/cards/Policies/Policies.tsx b/frontend/pages/hosts/details/cards/Policies/Policies.tsx index 993e5e0e22..771dd7ebcd 100644 --- a/frontend/pages/hosts/details/cards/Policies/Policies.tsx +++ b/frontend/pages/hosts/details/cards/Policies/Policies.tsx @@ -55,10 +55,6 @@ const Policies = ({ // Remove view all hosts link tableHeaders.pop(); } - const noResponses: IHostPolicy[] = - policies.filter( - (policy: IHostPolicy) => !isValidPolicyResponse(policy.response) - ) || []; const failingResponses: IHostPolicy[] = policies.filter((policy: IHostPolicy) => policy.response === "fail") || []; @@ -71,20 +67,6 @@ const Policies = ({ {failingResponses?.length > 0 && ( )} - {noResponses?.length > 0 && !deviceUser && ( - - - This host is not updating the response for some policies. Check - out the Fleet documentation on - - - - )}
- This host is not updating the response for some policies. Check - out the Fleet documentation on - -