Skip to content

Commit

Permalink
removed raw log
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodacus committed Dec 30, 2024
1 parent 3a5c8fc commit 89f598e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/lib/runtime/message-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ interface MessageState {
function cleanoutMarkdownSyntax(content: string) {
const codeBlockRegex = /^\s*```\w*\n([\s\S]*?)\n\s*```\s*$/;
const match = content.match(codeBlockRegex);
console.log('matching', !!match, content);

// console.log('matching', !!match, content);

if (match) {
return match[1]; // Remove common leading 4-space indent
Expand Down

0 comments on commit 89f598e

Please sign in to comment.