From c9b75f8c545b7385321db6e62f42ef8ea831cf32 Mon Sep 17 00:00:00 2001 From: Joe Patterson Date: Wed, 23 Nov 2022 11:20:14 +1000 Subject: [PATCH] run prettier Signed-off-by: Joe Patterson --- .../components/Cards/Group/GroupProfile/GroupProfileCard.tsx | 5 ++++- .../Cards/User/UserProfileCard/UserProfileCard.tsx | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx b/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx index f7dd9d20d4..c138c73735 100644 --- a/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx +++ b/plugins/org/src/components/Cards/Group/GroupProfile/GroupProfileCard.tsx @@ -63,7 +63,10 @@ const CardTitle = (props: { title: string }) => ( ); /** @public */ -export const GroupProfileCard = (props: { variant?: InfoCardVariants, hideLinks?: boolean }) => { +export const GroupProfileCard = (props: { + variant?: InfoCardVariants; + hideLinks?: boolean; +}) => { const catalogApi = useApi(catalogApiRef); const alertApi = useApi(alertApiRef); const { entity: group } = useEntity(); diff --git a/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx b/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx index 7d5bb33a4e..2421d609d4 100644 --- a/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx +++ b/plugins/org/src/components/Cards/User/UserProfileCard/UserProfileCard.tsx @@ -58,7 +58,10 @@ const CardTitle = (props: { title?: string }) => ) : null; /** @public */ -export const UserProfileCard = (props: { variant?: InfoCardVariants, hideLinks?: boolean }) => { +export const UserProfileCard = (props: { + variant?: InfoCardVariants; + hideLinks?: boolean; +}) => { const { entity: user } = useEntity(); if (!user) { return User not found;