We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c13920 commit b136bb3Copy full SHA for b136bb3
packages/core/auth-js/src/GoTrueClient.ts
@@ -3587,7 +3587,9 @@ export default class GoTrueClient {
3587
* Revokes a user's OAuth grant for a specific client.
3588
* Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
3589
*/
3590
- private async _revokeOAuthGrant(options: { clientId: string }): Promise<AuthOAuthRevokeGrantResponse> {
+ private async _revokeOAuthGrant(options: {
3591
+ clientId: string
3592
+ }): Promise<AuthOAuthRevokeGrantResponse> {
3593
try {
3594
return await this._useSession(async (result) => {
3595
const {
0 commit comments