refactor: reinstate drizzle

This commit is contained in:
Henry
2025-04-23 13:11:00 +01:00
parent 0c25fe3864
commit c1348cf455
22 changed files with 1964 additions and 879 deletions

View File

@@ -24,7 +24,7 @@ export const feedbackRouter = createTRPCRouter({
code: "UNAUTHORIZED",
});
const result = await feedbackRepo.create(ctx.adminDb, {
const result = await feedbackRepo.create(ctx.db, {
feedback: input.feedback,
createdBy: userId,
url: input.url,