From 52811185965cb0fe4c9b42e73c447b67e917a5ca Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Wed, 3 Jun 2026 08:40:15 -0500 Subject: [PATCH] fix(notifications): missed api converstion in the front end for updating --- frontend/src/routes/admin/notifications.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/admin/notifications.tsx b/frontend/src/routes/admin/notifications.tsx index cb82572..bf74891 100644 --- a/frontend/src/routes/admin/notifications.tsx +++ b/frontend/src/routes/admin/notifications.tsx @@ -170,11 +170,11 @@ const NotificationTable = () => { try { const res = await api.patch( - `/lst/api/notification/${i.row.original.id}`, + `/notification/${i.row.original.id}`, { active: !activeToggle, }, - { withCredentials: true }, + ); if (res.data.success) {