diff --git a/src/pages/Worker/Card/WorkerNotificationsManager.vue b/src/pages/Worker/Card/WorkerNotificationsManager.vue index 989918b26..9be2e4527 100644 --- a/src/pages/Worker/Card/WorkerNotificationsManager.vue +++ b/src/pages/Worker/Card/WorkerNotificationsManager.vue @@ -210,16 +210,10 @@ async function toggleNotif(notif, chip) { message: t('worker.notificationsManager.subscribed'), }); } else { - const token = await getToken(); - - const tokenUser = await axios.get(`AccessTokens/${token}/user`); - console.log(tokenUser); - await axios.post( `NotificationSubscriptions/deleteNotification`, { - userFk: entityId.value, - notificationFk: notif.id, + notificationId: this.worker.subscribedNotifs.find((sub) => sub.notificationFk == notif.id).id, }, { headers: {