diff --git a/AppImage/components/system-logs.tsx b/AppImage/components/system-logs.tsx index cb19f88..b404a4e 100644 --- a/AppImage/components/system-logs.tsx +++ b/AppImage/components/system-logs.tsx @@ -993,32 +993,41 @@ export function SystemLogs() { {/* Notifications Tab */} -
+
{notifications.map((notification, index) => (
{ setSelectedNotification(notification) setIsNotificationModalOpen(true) }} > -
-
- {getNotificationIcon(notification.type)} - + {/* Header with icon, badge, and timestamp */} +
+
+
{getNotificationIcon(notification.type)}
+ {notification.type.toUpperCase()}
-
{notification.timestamp}
+
+ {notification.timestamp} +
-
-
+ {/* Message content */} +
+
{notification.message}
-
- Service: {notification.service} • Source: {notification.source} +
+ Service: {notification.service} + + Source: {notification.source}