fix: turn off permission of GitHub OAuth app fixed #1377

This commit is contained in:
Liyas Thomas
2020-12-10 16:12:38 +05:30
parent 3acb2a56a2
commit bdf72eca70
2 changed files with 9 additions and 9 deletions

View File

@@ -137,7 +137,7 @@ export class FirebaseInstance {
}
async signInUserWithGithub() {
return await this.app.auth().signInWithPopup(this.authProviders.github().addScope("repo gist"))
return await this.app.auth().signInWithPopup(this.authProviders.github().addScope("gist"))
}
async signInWithEmailAndPassword(email, password) {