Description
There's a minor typo in src/core/AuthorizationCodeGrant.ts at line 128 - a double semicolon ;; instead of a single one.
return { clientDetails: client_details } as SessionInformation;;
Should be:
return { clientDetails: client_details } as SessionInformation;
Impact
No functional impact - just a cosmetic fix for code cleanliness.