diff --git a/ui/components/InfoModal.tsx b/ui/components/InfoModal.tsx
index d7ce0f0e84..35b5a3e3a2 100644
--- a/ui/components/InfoModal.tsx
+++ b/ui/components/InfoModal.tsx
@@ -15,25 +15,33 @@ const ClusterName = styled(Text)`
padding: ${(props) => props.theme.spacing.base};
`;
+const OverflowWrapper = styled.div`
+ overflow-y: scroll;
+`;
+
function InfoModal({ searchedNamespaces, onCloseModal, open }: Props) {
const onClose = () => onCloseModal(false);
const content = (
-
- {Object.entries(searchedNamespaces || []).map(
- ([kind, clusterNamespacesList]) => (
-
+ kind: {kind}
- {clusterNamespacesList?.map((clusterNamespaces) => (
-
+ {Object.entries(searchedNamespaces || []).map(
+ ([kind, clusterNamespacesList]) => (
+
+ kind: {kind}
+ {clusterNamespacesList?.map((clusterNamespaces) => (
+