Skip to content

Commit

Permalink
fix: fixed addIssuerBranding step
Browse files Browse the repository at this point in the history
  • Loading branch information
sksadjad committed Jun 28, 2024
1 parent 6fba515 commit 3008b11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/oid4vci-holder/src/machine/oid4vciMachine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const createOID4VCIMachine = (opts?: CreateOID4VCIMachineOpts): OID4VCIStateMach
[OID4VCIMachineAddContactStates.idle]: {},
[OID4VCIMachineAddContactStates.next]: {
always: {
target: OID4VCIMachineStates.addIssuerBranding,
target: `#${OID4VCIMachineStates.addIssuerBranding}`,
cond: OID4VCIMachineGuards.hasContactGuard,
},
},
Expand All @@ -294,7 +294,7 @@ const createOID4VCIMachine = (opts?: CreateOID4VCIMachineOpts): OID4VCIStateMach
invoke: {
src: OID4VCIMachineServices.addIssuerBranding,
onDone: {
target: `#${OID4VCIMachineStates.transitionFromContactSetup}`,
target: OID4VCIMachineStates.transitionFromContactSetup,
},
},
},
Expand Down

0 comments on commit 3008b11

Please sign in to comment.