From 739c55c0bc4893a63c397e00fc855f1b93c11e60 Mon Sep 17 00:00:00 2001 From: zain94rif Date: Mon, 5 Jan 2026 14:26:12 +0700 Subject: [PATCH] fix(api): fixing endpoint notification --- src/api/notification.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/notification.jsx b/src/api/notification.jsx index 2738f88..12b832c 100644 --- a/src/api/notification.jsx +++ b/src/api/notification.jsx @@ -68,7 +68,7 @@ const resendChatByUser = async (notificationId, userPhone) => { const resendChatAllUser = async (notificationId) => { const response = await SendRequest({ method: 'post', - prefix: `notification-user/resend/${notificationId}`, + prefix: `notification/resend/${notificationId}`, }); return response.data; };