diff --git a/frontends/nextjs/src/lib/db/credentials/password-change/get-password-change-timestamps.ts b/frontends/nextjs/src/lib/db/credentials/password-change/get-password-change-timestamps.ts index f2d75eb54..09196c1b1 100644 --- a/frontends/nextjs/src/lib/db/credentials/password-change/get-password-change-timestamps.ts +++ b/frontends/nextjs/src/lib/db/credentials/password-change/get-password-change-timestamps.ts @@ -1,4 +1,4 @@ -import { getAdapter } from '../dbal-client' +import { getAdapter } from '../../core/dbal-client' /** * Get password change timestamps for all users diff --git a/frontends/nextjs/src/lib/db/credentials/password-change/set-password-change-timestamps.ts b/frontends/nextjs/src/lib/db/credentials/password-change/set-password-change-timestamps.ts index 19e7d3dd3..ccb5d5996 100644 --- a/frontends/nextjs/src/lib/db/credentials/password-change/set-password-change-timestamps.ts +++ b/frontends/nextjs/src/lib/db/credentials/password-change/set-password-change-timestamps.ts @@ -1,4 +1,4 @@ -import { getAdapter } from '../dbal-client' +import { getAdapter } from '../../core/dbal-client' /** * Set password change timestamps for users diff --git a/frontends/nextjs/src/lib/db/credentials/password-reset/operations/delete-password-reset-token.ts b/frontends/nextjs/src/lib/db/credentials/password-reset/operations/delete-password-reset-token.ts index 8c91f5cb8..232d360b8 100644 --- a/frontends/nextjs/src/lib/db/credentials/password-reset/operations/delete-password-reset-token.ts +++ b/frontends/nextjs/src/lib/db/credentials/password-reset/operations/delete-password-reset-token.ts @@ -1,4 +1,4 @@ -import { getAdapter } from '../dbal-client' +import { getAdapter } from '../../../core/dbal-client' import { getPasswordResetTokens } from './get-password-reset-tokens' /**