From 175796a6e9288760144d8ff361e3cdf52cfac1f8 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Fri, 11 Apr 2025 10:26:12 -0700 Subject: [PATCH] Fix bug --- apps/backend/src/prisma-client.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/backend/src/prisma-client.tsx b/apps/backend/src/prisma-client.tsx index 7a312c4b7..2bfb259bf 100644 --- a/apps/backend/src/prisma-client.tsx +++ b/apps/backend/src/prisma-client.tsx @@ -139,6 +139,7 @@ async function rawQueryArray[]>(queries: Q): Promise<[] if (isPromise(postProcessed)) { ignoreUnhandledRejection(postProcessed); } + return postProcessed; }); return postProcessed; });