From 5ea45537d3032ccf64b2b82edee0801834359478 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 23 Mar 2023 07:47:58 -0700 Subject: [PATCH] Fix resize --- src-web/components/GraphQLEditor.tsx | 1 - src-web/components/Sidebar.tsx | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) 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 (
{/* Show global overlay with cursor style to ensure cursor remains the same when moving quickly */}