Merge branch 'ziro2264-develop-patch-29679' into 'develop'

Fix non-link list items not showing up properly

See merge request soapbox-pub/soapbox!2653
This commit is contained in:
Alex Gleason 2023-08-31 13:34:42 +00:00
commit 2ad7cb3b70
No known key found for this signature in database

View file

@ -121,7 +121,9 @@ const ListItem: React.FC<IListItem> = ({ label, hint, children, to, onClick, onS
<Comp <Comp
className={className} className={className}
{...linkProps} {...linkProps}
/> >
{body}
</Comp>
); );
}; };