From 59c7e15259af0d258cb07996d76cc0b2742c88ad Mon Sep 17 00:00:00 2001 From: Timo Glastra Date: Wed, 9 Oct 2024 10:11:34 +0200 Subject: [PATCH] fix: import path in authorizationEndpoint.ts (#2055) 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'