remove console log

This commit is contained in:
sam hoang
2025-01-15 21:13:40 +07:00
parent 6476c43695
commit 26119644b3
2 changed files with 0 additions and 2 deletions

View File

@@ -997,7 +997,6 @@ export class ClineProvider implements vscode.WebviewViewProvider {
case "loadApiConfiguration":
if (message.text) {
try {
console.log("loadApiConfiguration", message.text)
const apiConfig = await this.configManager.LoadConfig(message.text);
const listApiConfig = await this.configManager.ListConfig();

View File

@@ -483,7 +483,6 @@ const ApiOptions = ({ apiErrorMessage, modelIdErrorMessage }: ApiOptionsProps) =
<Checkbox
checked={apiConfiguration?.openAiStreamingEnabled ?? true}
onChange={(checked: boolean) => {
console.log("isChecked", checked)
handleInputChange("openAiStreamingEnabled")({
target: { value: checked },
})