diff --git a/src-web/components/GrpcRequestPane.tsx b/src-web/components/GrpcRequestPane.tsx index 9836115b..2b6eb466 100644 --- a/src-web/components/GrpcRequestPane.tsx +++ b/src-web/components/GrpcRequestPane.tsx @@ -265,7 +265,6 @@ export function GrpcRequestPane({ { - if (cm.current?.view != null) { - updateContents(cm.current.view, defaultValue || ''); - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [forceUpdateKey]); - // For read-only mode, update content when `defaultValue` changes useEffect( function updateReadOnlyEditor() { diff --git a/src-web/components/core/Editor/filter/extension.ts b/src-web/components/core/Editor/filter/extension.ts index 95a87b23..87477edd 100644 --- a/src-web/components/core/Editor/filter/extension.ts +++ b/src-web/components/core/Editor/filter/extension.ts @@ -112,7 +112,6 @@ function fieldValueCompletions( ): Completion[] | null { if (!def || !def.values) return null; const vals = Array.isArray(def.values) ? def.values : def.values(); - // console.log("HELLO", v, v.match(IDENT)); return vals.map((v) => ({ label: v.match(IDENT_ONLY) ? v : `"${v}"`, displayLabel: v,