diff --git a/src/features/dashboard/SystemOverview/PlatesProcessed.tsx b/src/features/dashboard/SystemOverview/PlatesProcessed.tsx
index 83866c0..5d4b5d6 100644
--- a/src/features/dashboard/SystemOverview/PlatesProcessed.tsx
+++ b/src/features/dashboard/SystemOverview/PlatesProcessed.tsx
@@ -11,25 +11,30 @@ const PlatesProcessed = ({ platesProcessed }: PlatesProcessedProps) => {
const toastReceived = platesProcessed?.totalReceived || 0;
return (
-
-
-
Total Active
- {totalActive}
-
-
-
Total Received
- {toastReceived}
-
-
-
Total Pending
-
{totalPending}
+ <>
+
+
Reads
+
+
+
Total Active
+ {totalActive}
+
+
+
Total Received
+ {toastReceived}
+
+
+
Total Pending
+ {totalPending}
+
-
-
Total Failed
-
{totalFailed}
+
+
Total Failed
+ {totalFailed}
+
-
+ >
);
};
diff --git a/src/features/dashboard/SystemOverview/SystemOverview.tsx b/src/features/dashboard/SystemOverview/SystemOverview.tsx
index 63d1e0f..907b000 100644
--- a/src/features/dashboard/SystemOverview/SystemOverview.tsx
+++ b/src/features/dashboard/SystemOverview/SystemOverview.tsx
@@ -28,7 +28,6 @@ const SystemOverview = () => {
Active Sightings
- Reads
diff --git a/src/features/dashboard/components/sightingStack/sightingItemModal/SightingModalContent.tsx b/src/features/dashboard/components/sightingStack/sightingItemModal/SightingModalContent.tsx
index a33013c..45acd45 100644
--- a/src/features/dashboard/components/sightingStack/sightingItemModal/SightingModalContent.tsx
+++ b/src/features/dashboard/components/sightingStack/sightingItemModal/SightingModalContent.tsx
@@ -51,9 +51,7 @@ const SightingModalContent = ({ sighting }: SightingModalContentProps) => {
>
- ) : (
-
No sighting data available.
- )}
+ ) : null}