From bb517abd696dde2d31ac47ed8f66cd549782b267 Mon Sep 17 00:00:00 2001 From: Timo Glastra Date: Wed, 9 Oct 2024 09:46:19 +0200 Subject: [PATCH] fix: import path in authorizationEndpoint.ts Signed-off-by: Timo Glastra --- .../src/openid4vc-verifier/router/authorizationEndpoint.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/openid4vc/src/openid4vc-verifier/router/authorizationEndpoint.ts b/packages/openid4vc/src/openid4vc-verifier/router/authorizationEndpoint.ts index 99c95ff97..926104b41 100644 --- a/packages/openid4vc/src/openid4vc-verifier/router/authorizationEndpoint.ts +++ b/packages/openid4vc/src/openid4vc-verifier/router/authorizationEndpoint.ts @@ -1,6 +1,6 @@ import type { OpenId4VcVerificationRequest } from './requestContext' import type { OpenId4VcVerificationSessionRecord } from '../repository' -import type { AgentContext } from '@credo-ts/core/src/agent/context/AgentContext' +import type { AgentContext } from '@credo-ts/core' import type { AuthorizationResponsePayload, DecryptCompact } from '@sphereon/did-auth-siop' import type { Response, Router } from 'express'