Skip to content

Commit

Permalink
WIP: ignore typescript errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Sep 25, 2023
1 parent ce76cd2 commit d0c5e97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gConsent/util/access.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ export const mockAccessGrantVc = async (

if (framingOptions?.expandModeUri) {
// @ts-ignore
accessGrant.credentialSubject?.providedConsent?.mode =
accessGrant.credentialSubject?.providedConsent?.mode = // @ts-ignore
accessGrant.credentialSubject?.providedConsent?.mode.map(
(mode) => `http://www.w3.org/ns/auth/acl#${mode}`,
(mode: string) => `http://www.w3.org/ns/auth/acl#${mode}`,
);
}

Expand Down

0 comments on commit d0c5e97

Please sign in to comment.