fix(api): fixing endpoint notification

This commit is contained in:
zain94rif
2026-01-05 14:26:12 +07:00
parent 5b4485d20d
commit 739c55c0bc

View File

@@ -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;
};