Skip to content

Commit

Permalink
Remove stray console.log calls
Browse files Browse the repository at this point in the history
  • Loading branch information
dstotijn committed Mar 2, 2022
1 parent 857aa0c commit ed9a539
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion admin/src/features/sender/components/EditRequest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},
});
Expand Down
1 change: 0 additions & 1 deletion admin/src/lib/components/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ interface Props {
}

function Editor({ content, contentType, monacoOptions, onChange }: Props): JSX.Element {
console.log(content);
return (
<MonacoEditor
language={languageForContentType(contentType)}
Expand Down

0 comments on commit ed9a539

Please sign in to comment.