diff --git a/src/compounds/Item/Item.jsx b/src/compounds/Item/Item.jsx index 65ee165..e37d267 100644 --- a/src/compounds/Item/Item.jsx +++ b/src/compounds/Item/Item.jsx @@ -8,8 +8,8 @@ import ItemLoading from './ItemLoading' import NextLink from '../../components/NextLink/NextLink' import './item.scss' -const Item = ({ buttonLink, buttonProps, markdownDescriptionTruncated, markdownDescriptionExtended, href, isLoading, item, orientation, titleLink, withButtonLink, - withTitleLink, width }) => { +const Item = ({ buttonLink, buttonProps, markdownDescriptionTruncated, markdownDescriptionExtended, truncatedLength, href, isLoading, item, orientation, titleLink, + withButtonLink, withTitleLink, width }) => { if (isLoading) { return ( <> @@ -69,6 +69,7 @@ const Item = ({ buttonLink, buttonProps, markdownDescriptionTruncated, markdownD item={item} markdownDescriptionTruncated={markdownDescriptionTruncated} markdownDescriptionExtended={markdownDescriptionExtended} + truncatedLength={truncatedLength} orientation={orientation} titleLink={link} withButtonLink={withButtonLink}