diff --git a/surfsense_web/lib/apis/notifications-api.service.ts b/surfsense_web/lib/apis/notifications-api.service.ts index a2489cdee..aff220f17 100644 --- a/surfsense_web/lib/apis/notifications-api.service.ts +++ b/surfsense_web/lib/apis/notifications-api.service.ts @@ -83,12 +83,8 @@ class NotificationsApiService { * Mark all notifications as read */ markAllAsRead = async (): Promise => { - return baseApiService.patch( - "/api/v1/notifications/read-all", - markAllNotificationsReadResponse - ); + return baseApiService.patch("/api/v1/notifications/read-all", markAllNotificationsReadResponse); }; } export const notificationsApiService = new NotificationsApiService(); -