Disable label chips on main grid to see if it is causing sizing issues

This commit is contained in:
Jackson Harper
2022-04-13 16:19:39 -07:00
parent 810401946e
commit c553b8317a

View File

@ -154,11 +154,11 @@ export function GridLinkedItemCard(props: LinkedItemCardProps): JSX.Element {
/>
)}
</HStack>
<HStack css={{ mt: '8px' }}>
{/* <HStack css={{ mt: '8px' }}>
{props.item.labels?.map(({ name, color }, index) => (
<LabelChip key={index} text={name || ''} color={color} />
))}
</HStack>
</HStack> */}
</VStack>
)
}