Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix confidential OAuth flow (#111802)
Previously we were accepting "string | undefined" as `state` parameter. But if the `state` was not present in the URL, we received null. That was breaking the confidential flow in cases where `state` was not provided. This commit changes the type of parameter to "string | null" and fixes the flow in such cases.
- Loading branch information