Skip to content

Commit

Permalink
Removed debug log from response handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
barnettwilliam committed Dec 13, 2023
1 parent e927029 commit 92d27f5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions platform/src/Playground.js
Original file line number Diff line number Diff line change
Expand Up @@ -774,13 +774,7 @@ function handleResponseActionFunction(action, requestPromise){
switch (action.outputType){
case "code":
// Text
var editor = outputPanel.getEditor();
console.log("BEFORE THE CALL");
console.log(editor.getValue());
console.log(response.generatedText.trim());
outputPanel.getEditor().setValue(response.generatedText.trim(), 1);
console.log("AFTER THE CALL");
console.log(outputPanel.getEditor().getValue());
break;

case "html":
Expand Down

0 comments on commit 92d27f5

Please sign in to comment.