From 3392b1a1caab6701282d17650470db3d445a903e Mon Sep 17 00:00:00 2001 From: ankitsridhar16 Date: Thu, 15 Dec 2022 23:21:57 +0530 Subject: [PATCH] chore: minor changes to Dockerfilefor prisma service --- packages/hoppscotch-backend/src/prisma/prisma.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hoppscotch-backend/src/prisma/prisma.service.ts b/packages/hoppscotch-backend/src/prisma/prisma.service.ts index 70d38eebb..8febf1b5b 100644 --- a/packages/hoppscotch-backend/src/prisma/prisma.service.ts +++ b/packages/hoppscotch-backend/src/prisma/prisma.service.ts @@ -1,5 +1,5 @@ import { Injectable, OnModuleInit, OnModuleDestroy } from '@nestjs/common'; -import { PrismaClient } from 'prisma/prisma-client/scripts/default-index'; +import { PrismaClient } from '@prisma/client'; @Injectable() export class PrismaService