Remove logs

This commit is contained in:
Saoud Rizwan
2024-09-03 21:12:29 -04:00
parent f87a809df7
commit e47d6e87f4
2 changed files with 0 additions and 4 deletions

View File

@@ -394,12 +394,9 @@ export class ClaudeDevProvider implements vscode.WebviewViewProvider {
// OpenRouter
async handleOpenRouterCallback(code: string) {
console.log("handleOpenRouterCallback", code)
let apiKey: string
try {
const response = await axios.post("https://openrouter.ai/api/v1/auth/keys", { code })
console.log("OpenRouter API response:", response.data)
if (response.data && response.data.key) {
apiKey = response.data.key
} else {