diff --git a/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx b/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx
index bdd0cd15f6..086979a0b4 100644
--- a/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx
+++ b/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx
@@ -20,7 +20,17 @@ import {
} from '@backstage/catalog-model';
import { Avatar, InfoCard } from '@backstage/core';
import { entityRouteParams } from '@backstage/plugin-catalog-react';
-import { Box, Grid, Link, Tooltip, Typography } from '@material-ui/core';
+import {
+ Box,
+ Grid,
+ Link,
+ List,
+ ListItem,
+ ListItemIcon,
+ ListItemText,
+ Tooltip,
+ Typography,
+} from '@material-ui/core';
import EmailIcon from '@material-ui/icons/Email';
import GroupIcon from '@material-ui/icons/Group';
import PersonIcon from '@material-ui/icons/Person';
@@ -80,40 +90,35 @@ export const UserProfileCard = ({
return User not found;
}
+ const emailHref = profile?.email ? `mailto:${profile.email}` : '';
+
return (
} variant={variant}>
-
-
-
-
-
+
+
+
-
- {profile?.email && (
-
-
-
-
-
-
- {profile.email}
-
-
-
- )}
-
-
-
-
-
-
+
+
+ {profile?.email && (
+
+
+
+
+
+ {profile.email}
+
+
+ )}
+
+
+
+
+
+
+
+
{groupNames.map((groupName, index) => (
))}
-
-
-
+
+
+