Skip to content

Commit

Permalink
Fix scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
phacks committed May 5, 2023
1 parent 40faf25 commit f92d3de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/options/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h1 class="mb-6">Orbit Extension Settings</h1>
<p x-show="!showLogin">
Successfully signed in! If you wish you sign out, visit your <a
href="https://app.orbit.love/user/settings/authorized_applications">User Settings on
Orbit</a> & revoke access for the "Orbit Browser Extension".
Orbit</a> & revoke access for the "Orbit Browser Extension"
application.
</p>

Expand Down
2 changes: 1 addition & 1 deletion src/options/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ document.addEventListener("alpine:init", () => {
let params = new URLSearchParams({
client_id: OAUTH_CLIENT_ID,
response_type: "code",
scopes: "read write",
scope: "read write",
code_challenge_method: "S256",
redirect_uri: chrome.identity.getRedirectURL("oauth2"),
code_challenge: codeChallenge,
Expand Down

0 comments on commit f92d3de

Please sign in to comment.