((props) => {
return (
+ {showEventMergingBanner && (
+ <>
+
+
+ >
+ )}
{PROTECTIONS_SECTION_TITLE}
-
{ProtectionsUpSellingComponent && (
<>
diff --git a/x-pack/test/security_solution_endpoint/page_objects/page_utils.ts b/x-pack/test/security_solution_endpoint/page_objects/page_utils.ts
index 132e93ce23cf0..fe00c50d5d360 100644
--- a/x-pack/test/security_solution_endpoint/page_objects/page_utils.ts
+++ b/x-pack/test/security_solution_endpoint/page_objects/page_utils.ts
@@ -19,6 +19,7 @@ export function EndpointPageUtils({ getService }: FtrProviderContext) {
*/
async clickOnEuiCheckbox(euiCheckBoxTestId: string) {
const euiCheckboxInput = await testSubjects.find(euiCheckBoxTestId);
+ await euiCheckboxInput.scrollIntoView();
await euiCheckboxInput.click();
},