Skip to content

Commit 7451578

Browse files
committed
chore: test eslint & prettier
1 parent c58fd3c commit 7451578

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import { PiniaColadaDevtools } from "@pinia/colada-devtools";
1414
import { useAuthStore } from "@/stores/auth";
1515
16-
const authStore = useAuthStore();
16+
const authStore = useAuthStore();
1717
1818
// Initialize authentication on app start
1919
authStore.initialize();

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 { mutate, ...mutation } = useMutation({
11+
const { mutatee, ...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)