remove empty fragment

This commit is contained in:
Maarten de Waard 2022-10-05 16:25:49 +02:00
parent 79103c21ff
commit c0b8251422
No known key found for this signature in database
GPG key ID: 1D3E893A657CC8DA

View file

@ -14,25 +14,23 @@ export const DashboardUtility: React.FC<any> = ({ item }: { item: any }) => {
}, [item.markdownSrc]); }, [item.markdownSrc]);
return ( return (
<> <a
<a href={item.url}
href={item.url} key={item.name}
key={item.name} target="_blank"
target="_blank" rel="noreferrer"
rel="noreferrer" className="bg-white rounded-lg overflow-hidden sm:p-2 flex items-center group"
className="bg-white rounded-lg overflow-hidden sm:p-2 flex items-center group" >
> <div className="w-16 h-16 flex items-center justify-center bg-primary-100 group-hover:bg-primary-200 transition-colors rounded-lg mr-4">
<div className="w-16 h-16 flex items-center justify-center bg-primary-100 group-hover:bg-primary-200 transition-colors rounded-lg mr-4"> {item.icon && <item.icon className="h-6 w-6 text-primary-900" aria-hidden="true" />}
{item.icon && <item.icon className="h-6 w-6 text-primary-900" aria-hidden="true" />} {item.assetSrc && <img className="h-6 w-6" src={item.assetSrc} alt={item.name} />}
{item.assetSrc && <img className="h-6 w-6" src={item.assetSrc} alt={item.name} />} </div>
</div> <div>
<div> <dt className="truncate text-sm leading-5 font-medium">{item.name}</dt>
<dt className="truncate text-sm leading-5 font-medium">{item.name}</dt> <dd className="mt-1 text-gray-500 text-sm leading-5 font-normal">
<dd className="mt-1 text-gray-500 text-sm leading-5 font-normal"> <ReactMarkdown>{content}</ReactMarkdown>
<ReactMarkdown>{content}</ReactMarkdown> </dd>
</dd> </div>
</div> </a>
</a>
</>
); );
}; };