I get this when running `npx prisma studio` ```Pri...
# orm-help
k
I get this when running
npx prisma studio
Copy code
Prisma Studio is up on <http://localhost:5555>
warn(prisma-client) Already 10 Prisma Clients are actively running.
I did use the workaround
Copy code
import { PrismaClient } from "@prisma/client"

const prisma = global.prisma || new PrismaClient()

if (process.env.NODE_ENV === "development") global.prisma = prisma

export default prisma
Is this normal? Or these are not related?
r
Could you restart Studio and check?
k
same.
I am using it with planetscale
port 3000 with nextjs is working fine tho. Only Prisma studio showing this problem