diff --git a/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.stories.tsx b/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.stories.tsx
new file mode 100644
index 0000000000..ee9c7cb6d2
--- /dev/null
+++ b/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.stories.tsx
@@ -0,0 +1,64 @@
+/*
+ * Copyright 2021 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { Grid } from '@material-ui/core';
+import React from 'react';
+import { MemoryRouter } from 'react-router';
+import { GroupEntity } from '@backstage/catalog-model';
+import { EntityContext } from '@backstage/plugin-catalog-react';
+import { GroupProfileCard } from '.';
+
+export default {
+ title: 'Plugins/Org/Group Profile Card',
+ component: GroupProfileCard,
+};
+
+const dummyDepartment = {
+ type: 'childOf',
+ target: {
+ namespace: 'default',
+ kind: 'group',
+ name: 'department-a',
+ },
+};
+
+const defaultEntity: UserEntity = {
+ kind: 'Group',
+ metadata: {
+ name: 'team-a',
+ description: 'Team A',
+ },
+ spec: {
+ profile: {
+ displayName: 'Team A',
+ email: 'team-a@example.com',
+ picture:
+ 'https://avatars.dicebear.com/api/identicon/team-a@example.com.svg?background=%23fff&margin=25',
+ },
+ },
+ relations: [dummyDepartment],
+};
+
+export const Default = () => (
+
+
+
+
+
+
+
+
+
+);
diff --git a/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx b/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx
index 9a72606c16..1682192880 100644
--- a/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx
+++ b/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx
@@ -117,7 +117,7 @@ export const GroupProfileCard = ({
-
+
{profile.email}