diff --git a/src/pages/EventRequests.vue b/src/pages/EventRequests.vue index cfc41d2..cb7a854 100644 --- a/src/pages/EventRequests.vue +++ b/src/pages/EventRequests.vue @@ -252,7 +252,7 @@ export default defineComponent({ getCellValue: () => [], }); const notification = all_notifications.value.find( - (n) => n.data.invitation === row.id + (n) => (n.data).invitation === row.id ); if (notification !== undefined) { void mainStore.removeNotification(notification.id); @@ -271,7 +271,7 @@ export default defineComponent({ getCellValue: () => [], }); const notification = all_notifications.value.find( - (n) => n.data.invitation === row.id + (n) => (n.data).invitation === row.id ); if (notification !== undefined) { void mainStore.removeNotification(notification.id);