diff --git a/src/core/webview/ClineProvider.ts b/src/core/webview/ClineProvider.ts index ed02b7be03..ee3c4f3ff9 100644 --- a/src/core/webview/ClineProvider.ts +++ b/src/core/webview/ClineProvider.ts @@ -1910,7 +1910,6 @@ export class ClineProvider implements vscode.WebviewViewProvider { this.outputChannel.appendLine("Invalid response from Glama API") } await fs.writeFile(glamaModelsFilePath, JSON.stringify(models)) - this.outputChannel.appendLine(`Glama models fetched and saved: ${JSON.stringify(models, null, 2)}`) } catch (error) { this.outputChannel.appendLine( `Error fetching Glama models: ${JSON.stringify(error, Object.getOwnPropertyNames(error), 2)}`, @@ -2026,7 +2025,6 @@ export class ClineProvider implements vscode.WebviewViewProvider { this.outputChannel.appendLine("Invalid response from OpenRouter API") } await fs.writeFile(openRouterModelsFilePath, JSON.stringify(models)) - this.outputChannel.appendLine(`OpenRouter models fetched and saved: ${JSON.stringify(models, null, 2)}`) } catch (error) { this.outputChannel.appendLine( `Error fetching OpenRouter models: ${JSON.stringify(error, Object.getOwnPropertyNames(error), 2)}`, @@ -2066,7 +2064,6 @@ export class ClineProvider implements vscode.WebviewViewProvider { } } await fs.writeFile(unboundModelsFilePath, JSON.stringify(models)) - this.outputChannel.appendLine(`Unbound models fetched and saved: ${JSON.stringify(models, null, 2)}`) } catch (error) { this.outputChannel.appendLine( `Error fetching Unbound models: ${JSON.stringify(error, Object.getOwnPropertyNames(error), 2)}`, diff --git a/webview-ui/src/components/chat/checkpoints/CheckpointMenu.tsx b/webview-ui/src/components/chat/checkpoints/CheckpointMenu.tsx index 8fee305a47..5eba795b73 100644 --- a/webview-ui/src/components/chat/checkpoints/CheckpointMenu.tsx +++ b/webview-ui/src/components/chat/checkpoints/CheckpointMenu.tsx @@ -3,16 +3,7 @@ import { CheckIcon, Cross2Icon } from "@radix-ui/react-icons" import { vscode } from "../../../utils/vscode" -import { - Button, - Popover, - PopoverContent, - PopoverTrigger, - Tooltip, - TooltipContent, - TooltipProvider, - TooltipTrigger, -} from "@/components/ui" +import { Button, Popover, PopoverContent, PopoverTrigger } from "@/components/ui" type CheckpointMenuProps = { ts: number @@ -52,16 +43,9 @@ export const CheckpointMenu = ({ ts, commitHash, currentCheckpointHash }: Checkp return (