Skip to content

Commit

Permalink
Fix Dock proof request type request
Browse files Browse the repository at this point in the history
  • Loading branch information
cykoder committed Sep 4, 2024
1 parent b43563f commit 40f6fcc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pages/openid.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,12 @@ const dockProofRequest = {
path: ['$.credentialSubject.name'],
},
{
path: ['$.name'],
path: ['$.type', '$.vc.type'],
filter: {
type: 'string',
pattern: 'Dock Credential',
type: 'array',
contains: {
const: 'DockCredential',
},
},
},
],
Expand Down

0 comments on commit 40f6fcc

Please sign in to comment.