Skip to content

Commit c58715b

Browse files
committed
fix
1 parent ab3b5bb commit c58715b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/sdk",
3-
"version": "1.6.1",
3+
"version": "1.6.1-0",
44
"description": "Model Context Protocol implementation for TypeScript",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

src/client/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export async function startAuthorization(
233233
}
234234

235235
// Generate PKCE challenge
236-
const challenge = await pkceChallenge();
236+
const challenge = await (pkceChallenge as any)();
237237
const codeVerifier = challenge.code_verifier;
238238
const codeChallenge = challenge.code_challenge;
239239

0 commit comments

Comments
 (0)