We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c281a8 commit 43efb4dCopy full SHA for 43efb4d
1 file changed
packages/client/lib/OpenID4VCIClient.ts
@@ -100,10 +100,7 @@ export class OpenID4VCIClient {
100
}
101
// Running syncAuthorizationRequestOpts later as it is using the state
102
if (!this._state.authorizationRequestOpts) {
103
- this._state = {
104
- ...this._state,
105
- authorizationRequestOpts: this.syncAuthorizationRequestOpts(authorizationRequest),
106
- }
+ this._state.authorizationRequestOpts = this.syncAuthorizationRequestOpts(authorizationRequest)
107
108
debug(`Authorization req options: ${JSON.stringify(this._state.authorizationRequestOpts, null, 2)}`);
109
0 commit comments