diff --git a/packages/web/components/patterns/LibraryCards/LibraryGridCard.tsx b/packages/web/components/patterns/LibraryCards/LibraryGridCard.tsx index 6c409793e..54211fb2d 100644 --- a/packages/web/components/patterns/LibraryCards/LibraryGridCard.tsx +++ b/packages/web/components/patterns/LibraryCards/LibraryGridCard.tsx @@ -289,119 +289,3 @@ export function LibraryGridCard(props: LinkedItemCardProps): JSX.Element { ) } - -// // Component -// export function LibraryGridCard(props: LinkedItemCardProps): JSX.Element { -// return ( -// { -// props.handleAction('showDetail') -// }} -// > -// -// -// -// { -// // This is here to prevent menu click events from bubbling -// // up and causing us to "click" on the link item. -// e.stopPropagation() -// }} -// > -// -// } -// actionHandler={props.handleAction} -// /> -// -// -// -// -// {props.item.author && ( -// {removeHTMLTags(props.item.author)} -// )} -// {props.originText && ( -// <> -// -// -// {props.originText} -// -// -// )} -// -// -// -// -// -// {props.item.description} -// -// -// -// {props.item.labels?.map(({ name, color }, index) => ( -// -// ))} -// -// -// -// -// ) -// }