diff --git a/keep-ui/app/alerts/ViewAlertModal.tsx b/keep-ui/app/alerts/ViewAlertModal.tsx index a04adb0d1..dfad0b6ba 100644 --- a/keep-ui/app/alerts/ViewAlertModal.tsx +++ b/keep-ui/app/alerts/ViewAlertModal.tsx @@ -24,17 +24,23 @@ export const ViewAlertModal: React.FC = ({ alert, handleClo return ( -
-

Alert Details

- -
- {alert && ( -
-          {JSON.stringify(alert, null, 2)}
-        
- )} -
+
+

Alert Details

+
{/* Adjust gap as needed */} + + +
+
+ {alert && ( +
+      {JSON.stringify(alert, null, 2)}
+    
+ )} + + ); };