diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx
index 1d062c5c5..b7026af5e 100644
--- a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx
+++ b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx
@@ -1,6 +1,7 @@
import React, {ReactElement} from 'react';
import NumberedReportSection from './NumberedReportSection';
import pluralize from 'pluralize'
+import BreachedServersComponent from '../security/BreachedServers';
const LATERAL_MOVEMENT_DESCRIPTION = 'After the initial breach, the attacker will begin the Lateral \
Movement phase of the attack. They will employ various \
@@ -18,6 +19,8 @@ function LateralMovement({propagationStats}: {propagationStats: PropagationStats
<>
{getScannedVsExploitedStats(propagationStats.num_scanned_nodes, propagationStats.num_exploited_nodes)}
{getExploitationStatsPerExploit(propagationStats.num_exploited_per_exploit)}
+
+
>
)