Skip to content

Commit

Permalink
Fixes issue #92 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
grahnj authored Jul 18, 2023
1 parent 8f7789c commit 6afa65c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Modal: Component<{ content }> = (props) => {
"name": formValues().name,
"description": formValues().description,
"issuerDid": store.user[formValues().issuer]["did"],
"issuerKid": store.user[formValues().issuer]["kid"],
"verificationMethodId": store.user[formValues().issuer]["kid"],
"issuerName": formValues().issuerName,
"format": vcJWTFormat,
"outputDescriptors": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const IssueModal: Component<{ content }> = (props) => {
"@context": "https://www.w3.org/2018/credentials/v1",
"data": formValues().data,
"issuer": store.user[formValues().issuer]["did"],
"issuerKid": store.user[formValues().issuer]["kid"],
"verificationMethodId": store.user[formValues().issuer]["kid"],
"schemaId": props.content.schemaId,
"subject": formValues().subject,
...formValues().evidence.verificationMethod !== "verificationMethod-none" && { "evidence": [formValues().evidence] },
Expand Down

0 comments on commit 6afa65c

Please sign in to comment.