Skip to content

Commit

Permalink
Fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
sezna committed Jan 9, 2025
1 parent 007a76d commit 1d5ef8e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions vscode/src/debugger/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,7 @@ export function createDebugConsoleEventTarget(out: (message: string) => void) {
});

eventTarget.addEventListener("Result", (evt) => {
if (evt.detail.success) {
out(`${evt.detail.value}`);
} else {
out(`${evt.detail.value.message}`);
}
out(`${evt.detail.value}`);
});

return eventTarget;
Expand Down

0 comments on commit 1d5ef8e

Please sign in to comment.