diff --git a/projects/plugins/protect/src/js/routes/scan/scan-footer.jsx b/projects/plugins/protect/src/js/routes/scan/scan-footer.jsx
index 21101eac8da30..56d7ea1c14a7d 100644
--- a/projects/plugins/protect/src/js/routes/scan/scan-footer.jsx
+++ b/projects/plugins/protect/src/js/routes/scan/scan-footer.jsx
@@ -1,5 +1,4 @@
import {
- AdminSectionHero,
Text,
Button,
Title,
@@ -126,22 +125,18 @@ const FooterInfo = () => {
const ScanFooter = () => {
const { waf } = window.jetpackProtectInitialState || {};
- return (
-
- { waf.wafSupported ? (
- }
- secondary={ }
- preserveSecondaryOnMobile={ true }
- />
- ) : (
-
-
-
-
-
- ) }
-
+ return waf.wafSupported ? (
+ }
+ secondary={ }
+ preserveSecondaryOnMobile={ true }
+ />
+ ) : (
+
+
+
+
+
);
};