Skip to content

Commit a6d08e1

Browse files
committed
chore: removes unused variable
1 parent fffe598 commit a6d08e1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/client.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,6 @@ class Client {
4040
}
4141

4242
getAuthorizationUri() {
43-
const strava_query = {
44-
client_id: this.config.client_id,
45-
redirect_uri: this.config.redirect_uri,
46-
response_type: RESPONSE_TYPE_CODE,
47-
approval_prompt: APPROVAL_PROMPT_AUTO,
48-
scope: this.config.scopes.reduce((prev, cur) => `${prev},${cur}`),
49-
};
50-
5143
const uri = new URL(this.config.authorization_uri);
5244
uri.searchParams.append(CLIENT_ID, this.config.client_id);
5345
uri.searchParams.append(REDIRECT_URI, this.config.redirect_uri);

0 commit comments

Comments
 (0)