From 26f8246b91f84468a9bb6d8911c9cd2d3e4a188e Mon Sep 17 00:00:00 2001 From: Anirban Singha <143536290+SinghaAnirban005@users.noreply.github.com> Date: Fri, 8 Aug 2025 22:29:10 +0530 Subject: [PATCH] fix: text wrap on /conference (#22864) Co-authored-by: Kartik Saini <41051387+kart1ka@users.noreply.github.com> --- .../components/app-list-card/AppListCard.tsx | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/packages/ui/components/app-list-card/AppListCard.tsx b/packages/ui/components/app-list-card/AppListCard.tsx index 51366eff66..78df7ba829 100644 --- a/packages/ui/components/app-list-card/AppListCard.tsx +++ b/packages/ui/components/app-list-card/AppListCard.tsx @@ -53,34 +53,36 @@ export const AppListCard = (props: AppListCardProps & { highlight?: boolean }) = return (
-
+
{logo ? ( {`${title} ) : null} -
+

{title}

-
+
{isDefault && {t("default")}} {isTemplate && Template}
- {description} + + {description} + {invalidCredential && (
- - + + {t("invalid_credential", { appName: title })}
)}
{credentialOwner && ( -
+
)} - {actions} + {actions &&
{actions}
}
{children}