diff --git a/src/components/etke.cc/ServerNotificationsBadge.tsx b/src/components/etke.cc/ServerNotificationsBadge.tsx index a1e2d1d..7b5ff67 100644 --- a/src/components/etke.cc/ServerNotificationsBadge.tsx +++ b/src/components/etke.cc/ServerNotificationsBadge.tsx @@ -22,9 +22,11 @@ const useServerNotifications = () => { const fetchNotifications = async () => { const notificationsResponse: ServerNotificationsResponse = await dataProvider.getServerNotifications(etkeccAdmin, command !== ""); + const serverNotifications = [...notificationsResponse.notifications]; + serverNotifications.reverse(); setServerNotifications({ ...notificationsResponse, - notifications: notificationsResponse.notifications, + notifications: serverNotifications, success: notificationsResponse.success }); };