From 01c858c0b9cebc2bad1d1e103f6902c51e029948 Mon Sep 17 00:00:00 2001 From: sam hoang Date: Mon, 20 Jan 2025 23:10:45 +0700 Subject: [PATCH] chore: remove verbose log --- webview-ui/src/context/ExtensionStateContext.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/webview-ui/src/context/ExtensionStateContext.tsx b/webview-ui/src/context/ExtensionStateContext.tsx index 3963aaf..c68be11 100644 --- a/webview-ui/src/context/ExtensionStateContext.tsx +++ b/webview-ui/src/context/ExtensionStateContext.tsx @@ -118,8 +118,6 @@ export const ExtensionStateContextProvider: React.FC<{ children: React.ReactNode const onUpdateApiConfig = useCallback((apiConfig: ApiConfiguration) => { setState((currentState) => { - console.log("onUpdateApiConfig", currentState, apiConfig) - vscode.postMessage({ type: "upsertApiConfiguration", text: currentState.currentApiConfigName, @@ -132,8 +130,6 @@ export const ExtensionStateContextProvider: React.FC<{ children: React.ReactNode const handleInputChange = useCallback( (field: keyof ApiConfiguration) => (event: any) => { setState((currentState) => { - console.log("handleInputChange", currentState, event) - vscode.postMessage({ type: "upsertApiConfiguration", text: currentState.currentApiConfigName,