Remove stray console.log calls

This commit is contained in:
David Stotijn 2022-03-02 07:52:17 +01:00
parent 857aa0c49e
commit ed9a539ce3
No known key found for this signature in database
GPG key ID: B23243A9C47CEE2D
2 changed files with 0 additions and 2 deletions

View file

@ -156,7 +156,6 @@ function EditRequest(): JSX.Element {
const newHeaders = sortKeyValuePairs(senderRequest.headers || []);
setHeaders([...newHeaders.map(({ key, value }) => ({ key, value })), { key: "", value: "" }]);
console.log(senderRequest.response);
setResponse(senderRequest.response);
},
});

View file

@ -34,7 +34,6 @@ interface Props {
}
function Editor({ content, contentType, monacoOptions, onChange }: Props): JSX.Element {
console.log(content);
return (
<MonacoEditor
language={languageForContentType(contentType)}