We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f8ca6 commit 5a05bd6Copy full SHA for 5a05bd6
packages/node/src/integrations/tracing/claude-code/helpers.ts
@@ -36,8 +36,8 @@ async function ensurePatchedQuery(): Promise<void> {
36
}
37
38
const client = getClient();
39
- const integration = client?.getIntegrationByName<ClaudeCodeOptions>(CLAUDE_CODE_INTEGRATION_NAME);
40
- const options = integration?.options || {};
+ const integration = client?.getIntegrationByName(CLAUDE_CODE_INTEGRATION_NAME);
+ const options = (integration as any)?.options as ClaudeCodeOptions | undefined || {};
41
42
_globalPatchedQuery = patchClaudeCodeQuery(claudeSDK.query, options);
43
} catch (error) {
0 commit comments