diff --git a/frontend/pages/reports/components/ScanFinding.jsx b/frontend/pages/reports/components/ScanFinding.jsx index 15006cb16..3cfed72ab 100644 --- a/frontend/pages/reports/components/ScanFinding.jsx +++ b/frontend/pages/reports/components/ScanFinding.jsx @@ -246,33 +246,6 @@ const FindingRecommendation = ({ anchor, solution, sbtType }) => ( ))} )} - {sbtType === 'a11y' && ( - <> - {solution.split('\n\n').map((fixList, listindex) => ( -
- {fixList.split('\n').map((str, i) => - i === 0 ? ( -

- {str} - - # - -

- ) : ( -
- -
- ), - )} -
- ))} - - )} );