diff --git a/components/findings/table/finding-detail.tsx b/components/findings/table/finding-detail.tsx
index b5865c8c73..7f2a84e714 100644
--- a/components/findings/table/finding-detail.tsx
+++ b/components/findings/table/finding-detail.tsx
@@ -97,7 +97,7 @@ export const FindingDetail = ({
)}
{remediation.code &&
Object.values(remediation.code).some(Boolean) && (
- <>
+
Check these links:
@@ -112,25 +112,27 @@ export const FindingDetail = ({
)}
- {Object.entries(remediation.code)
- .filter(([key]) => key !== "cli")
- .map(([key, value]) =>
- value ? (
-
- {key === "other"
- ? "External doc"
- : key.charAt(0).toUpperCase() +
- key.slice(1).toLowerCase()}
-
- ) : null,
- )}
+
+ {Object.entries(remediation.code)
+ .filter(([key]) => key !== "cli")
+ .map(([key, value]) =>
+ value ? (
+
+ {key === "other"
+ ? "External doc"
+ : key.charAt(0).toUpperCase() +
+ key.slice(1).toLowerCase()}
+
+ ) : null,
+ )}
+
- >
+
)}