From c0b8251422bb59260020ce8adb5a219eb071bfa1 Mon Sep 17 00:00:00 2001
From: Maarten de Waard <maarten@greenhost.nl>
Date: Wed, 5 Oct 2022 16:25:49 +0200
Subject: [PATCH] remove empty fragment

---
 .../DashboardUtility/DashboardUtility.tsx     | 38 +++++++++----------
 1 file changed, 18 insertions(+), 20 deletions(-)

diff --git a/src/modules/dashboard/components/DashboardUtility/DashboardUtility.tsx b/src/modules/dashboard/components/DashboardUtility/DashboardUtility.tsx
index 22d2e142..8b1c2b17 100644
--- a/src/modules/dashboard/components/DashboardUtility/DashboardUtility.tsx
+++ b/src/modules/dashboard/components/DashboardUtility/DashboardUtility.tsx
@@ -14,25 +14,23 @@ export const DashboardUtility: React.FC<any> = ({ item }: { item: any }) => {
   }, [item.markdownSrc]);
 
   return (
-    <>
-      <a
-        href={item.url}
-        key={item.name}
-        target="_blank"
-        rel="noreferrer"
-        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">
-          {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} />}
-        </div>
-        <div>
-          <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">
-            <ReactMarkdown>{content}</ReactMarkdown>
-          </dd>
-        </div>
-      </a>
-    </>
+    <a
+      href={item.url}
+      key={item.name}
+      target="_blank"
+      rel="noreferrer"
+      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">
+        {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} />}
+      </div>
+      <div>
+        <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">
+          <ReactMarkdown>{content}</ReactMarkdown>
+        </dd>
+      </div>
+    </a>
   );
 };
-- 
GitLab