diff --git a/frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx b/frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx
index b6f0a312..ba5092a6 100644
--- a/frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx
+++ b/frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx
@@ -367,8 +367,15 @@ export default function ServiceMonitoring() {
+
+
+ {loading ? : 'Detail Letter Of Guarante'}
+
+
+
+
@@ -1114,60 +1121,37 @@ export default function ServiceMonitoring() {
key={dateIndex}
>
- {date ? date : '-'}
- {data.laboratoriumResults[date].map(
- (laboratoriumResult, laboratoriumResultIndex) => (
-
-
-
-
-
- Date
- Examination
- Location
- {/* */}
-
-
-
-
-
-
-
-
- {laboratoriumResult.examination
- ? laboratoriumResult.examination
- : '-'}
-
-
- {laboratoriumResult.location
- ? laboratoriumResult.location
- : '-'}
-
- {/*
-
- >
- }
- /> */}
-
-
-
-
- )
- )}
+ {date ? date : '-'}
+ {data.laboratoriumResults[date]?.map((laboratoriumResult, laboratoriumResultIndex) => (
+
+
+
+
+
+ Date
+ Examination
+ Location
+
+
+
+
+
+ {laboratoriumResult.examination || '-'}
+ {laboratoriumResult.location || '-'}
+ {/*
+
+ >
+ }
+ /> */}
+
+
+
+
+ ))}
))