diff --git a/packages/web/components/nav-containers/HomeContainer.tsx b/packages/web/components/nav-containers/HomeContainer.tsx
index 59ff4e84a..0c1da5be9 100644
--- a/packages/web/components/nav-containers/HomeContainer.tsx
+++ b/packages/web/components/nav-containers/HomeContainer.tsx
@@ -469,7 +469,13 @@ const Title = (props: HomeItemViewProps): JSX.Element => {
)
}
-const TitleSmall = (props: HomeItemViewProps): JSX.Element => {
+type TitleSmallProps = {
+ maxLines?: string
+}
+
+const TitleSmall = (
+ props: HomeItemViewProps & TitleSmallProps
+): JSX.Element => {
return (
{
textOverflow: 'ellipsis',
wordBreak: 'break-word',
display: '-webkit-box',
- '-webkit-line-clamp': '3',
+ '-webkit-line-clamp': props.maxLines ?? '3',
'-webkit-box-orient': 'vertical',
}}
>
@@ -565,7 +571,7 @@ const JustAddedItemView = (props: HomeItemViewProps): JSX.Element => {
-
+
)
}