Fix graphql and other things

This commit is contained in:
Gregory Schier
2023-03-15 09:06:56 -07:00
parent 951ed787fa
commit 8915915c47
15 changed files with 77 additions and 56 deletions

View File

@@ -75,7 +75,6 @@ export function RequestPane({ fullHeight, className }: Props) {
) : activeRequest.bodyType === 'graphql' ? (
<GraphQLEditor
key={activeRequest.id}
useTemplating
className="!bg-gray-50"
defaultValue={activeRequest?.body ?? ''}
onChange={(body) => updateRequest.mutate({ body })}