fix: lint

This commit is contained in:
DecDuck
2025-11-22 10:46:03 +11:00
parent e230f79b54
commit 1e7ed34a60
4 changed files with 10 additions and 4 deletions

View File

@ -47,7 +47,9 @@ import { XMarkIcon } from "@heroicons/vue/24/solid";
import type { SerializeObject } from "nitropack";
import type { NotificationModel } from "~/prisma/client/models";
const props = defineProps<{ notification: SerializeObject<NotificationModel> }>();
const props = defineProps<{
notification: SerializeObject<NotificationModel>;
}>();
async function deleteMe() {
await $dropFetch(`/api/v1/notifications/:id`, {

View File

@ -49,5 +49,7 @@
import type { SerializeObject } from "nitropack";
import type { NotificationModel } from "~/prisma/client/models";
const props = defineProps<{ notifications: Array<SerializeObject<NotificationModel>> }>();
const props = defineProps<{
notifications: Array<SerializeObject<NotificationModel>>;
}>();
</script>