diff --git a/src-web/components/GraphQLEditor.tsx b/src-web/components/GraphQLEditor.tsx index 93d70585..c054f35f 100644 --- a/src-web/components/GraphQLEditor.tsx +++ b/src-web/components/GraphQLEditor.tsx @@ -62,7 +62,6 @@ export function GraphQLEditor({ defaultValue, onChange, baseRequest, ...extraEdi }); const req: HttpRequest = { ...baseRequest, body, id: '' }; sendEphemeralRequest(req).then((response) => { - console.log('RESPONSE', response.body); const { data } = JSON.parse(response.body); const schema = buildClientSchema(data); setGraphqlExtension(graphql(schema, {})); diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx index 428dc293..378b09e8 100644 --- a/src-web/components/Sidebar.tsx +++ b/src-web/components/Sidebar.tsx @@ -373,8 +373,9 @@ function ResizeBar({ onResizeStart, onReset, isResizing }: ResizeBarProps) { return (