Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
accessTokenRequested -> accessTokenRequestedByVSCE (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj authored Dec 20, 2023
1 parent 0db9d0c commit 76d7bea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/webview/MainProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const routeUserToStudioToAuthenticate = async () => {

const searchParams = new URLSearchParams();

searchParams.set(SEARCH_PARAMS_KEYS.COMMAND, 'accessTokenRequested');
searchParams.set(SEARCH_PARAMS_KEYS.COMMAND, 'accessTokenRequestedByVSCE');

const url = new URL('https://codemod.studio');
url.search = searchParams.toString();
Expand Down
6 changes: 3 additions & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function activate(context: vscode.ExtensionContext) {

searchParams.set(
SEARCH_PARAMS_KEYS.COMMAND,
'accessTokenRequested',
'accessTokenRequestedByVSCE',
);

const url = new URL('https://codemod.studio');
Expand Down Expand Up @@ -224,7 +224,7 @@ export async function activate(context: vscode.ExtensionContext) {

searchParams.set(
SEARCH_PARAMS_KEYS.COMMAND,
'accessTokenRequested',
'accessTokenRequestedByVSCE',
);

const url = new URL('https://codemod.studio');
Expand Down Expand Up @@ -1178,7 +1178,7 @@ export async function activate(context: vscode.ExtensionContext) {

searchParams.set(
SEARCH_PARAMS_KEYS.COMMAND,
'accessTokenRequested',
'accessTokenRequestedByVSCE',
);

const url = new URL('https://codemod.studio');
Expand Down

0 comments on commit 76d7bea

Please sign in to comment.