fix(api): fixing put to post

This commit is contained in:
zain94rif
2026-01-05 14:48:46 +07:00
parent 739c55c0bc
commit 3266641f81
2 changed files with 5 additions and 6 deletions

View File

@@ -58,7 +58,7 @@ const resendNotificationToUser = async (notificationId, userId) => {
// Resend Chat by User
const resendChatByUser = async (notificationId, userPhone) => {
const response = await SendRequest({
method: 'put',
method: 'post',
prefix: `notification-user/resend/${notificationId}/${userPhone}`,
});
return response.data;