Skip to content

Commit cb68eb0

Browse files
committed
chore: fix eslint test
1 parent 7451578 commit cb68eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/mutations/notifications.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { EnrichedNotification } from "@/dto/notifications";
88
export const useDeleteNotificationMutation = defineMutation(() => {
99
const queryCache = useQueryCache();
1010

11-
const { mutatee, ...mutation } = useMutation({
11+
const { mutate, ...mutation } = useMutation({
1212
mutation: (id: string) => deleteMyNotification(id),
1313
onMutate: (id: string) => {
1414
// optimistic: remove the notification from the "notifications" query

0 commit comments

Comments
 (0)