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

@ -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>