fix: remove jank prisma script, and move to generated prisma client

This commit is contained in:
DecDuck
2025-05-08 16:17:23 +10:00
parent 8295021c57
commit 67afadec4e
60 changed files with 153 additions and 168 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ import {
ArrowUpRightIcon,
} from "@heroicons/vue/20/solid";
import { micromark } from "micromark";
import type { Game } from "@prisma/client";
import type { Game } from "~/prisma/client";
const route = useRoute();
const id = route.params.id.toString();
+1 -1
View File
@@ -92,7 +92,7 @@
<script setup lang="ts">
import { TrashIcon, PlusIcon } from "@heroicons/vue/20/solid";
import type { Collection } from "@prisma/client";
import type { Collection } from "~/prisma/client";
const collections = await useCollections();
const collectionCreateOpen = ref(false);