Skip to content

Commit 01c858c

Browse files
committed
chore: remove verbose log
1 parent eff72ee commit 01c858c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

webview-ui/src/context/ExtensionStateContext.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ export const ExtensionStateContextProvider: React.FC<{ children: React.ReactNode
118118

119119
const onUpdateApiConfig = useCallback((apiConfig: ApiConfiguration) => {
120120
setState((currentState) => {
121-
console.log("onUpdateApiConfig", currentState, apiConfig)
122-
123121
vscode.postMessage({
124122
type: "upsertApiConfiguration",
125123
text: currentState.currentApiConfigName,
@@ -132,8 +130,6 @@ export const ExtensionStateContextProvider: React.FC<{ children: React.ReactNode
132130
const handleInputChange = useCallback(
133131
(field: keyof ApiConfiguration) => (event: any) => {
134132
setState((currentState) => {
135-
console.log("handleInputChange", currentState, event)
136-
137133
vscode.postMessage({
138134
type: "upsertApiConfiguration",
139135
text: currentState.currentApiConfigName,

0 commit comments

Comments
 (0)