diff --git a/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts b/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts index 845aa48f7..45717cb85 100644 --- a/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts +++ b/frontends/nextjs/src/lib/db/dbal-client/adapter/create-prisma-adapter.ts @@ -1,4 +1,4 @@ -import type { DBALAdapter } from './types' +import type { DBALAdapter } from '../types' import { closeConnection } from './close-connection' import { createEntity } from '../crud/write/create-entity' import { deleteEntity } from '../crud/write/delete-entity' diff --git a/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts b/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts index 75ed156dd..1a67b7cf7 100644 --- a/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts +++ b/frontends/nextjs/src/lib/db/dbal-client/adapter/get-adapter.ts @@ -1,4 +1,4 @@ -import type { DBALAdapter } from './types' +import type { DBALAdapter } from '../types' import { prismaAdapter } from './create-prisma-adapter' /**