diff options
-rw-r--r-- | .github/CODEOWNERS | 4 | ||||
-rw-r--r-- | src/api/auth.ts | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 2f0a50a..55cf527 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,5 +1,5 @@ -# Request joe for all PRs. -* @jb3 +# Request joe, HassanAbouelela for all PRs. +* @jb3 @HassanAbouelela # Request ks129 for CI and API related PRs. .github/workflows/** @ks129 @jb3 diff --git a/src/api/auth.ts b/src/api/auth.ts index 024292c..dd1f749 100644 --- a/src/api/auth.ts +++ b/src/api/auth.ts @@ -106,8 +106,7 @@ export async function getDiscordCode(scopes: OAuthScopes[], disableFunction?: (d // Open login window const windowRef = window.open( `https://discord.com/api/oauth2/authorize?client_id=${OAUTH2_CLIENT_ID}&state=${state}&response_type=code&scope=${scopeString}&redirect_uri=${redirectURI}&prompt=none`, - "Discord_OAuth2", - "height=700,width=500,location=no,menubar=no,resizable=no,status=no,titlebar=no,left=300,top=300" + "Discord_OAuth2" ); // Clean up on login |