From e836eb1a2e7939c68392518cd0cceef7eb28cf23 Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Thu, 7 Dec 2023 14:31:45 +0700 Subject: [PATCH] Remove console.log --- web/screens/Chat/SimpleTextMessage/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/screens/Chat/SimpleTextMessage/index.tsx b/web/screens/Chat/SimpleTextMessage/index.tsx index deb173462..a51e33488 100644 --- a/web/screens/Chat/SimpleTextMessage/index.tsx +++ b/web/screens/Chat/SimpleTextMessage/index.tsx @@ -57,9 +57,6 @@ const SimpleTextMessage: React.FC = (props) => { text = props.content[0]?.text?.value ?? '' } - const a = '```bash\nnpm init -y\n```' - console.log(marked.parse(a)) - const parsedText = marked.parse(text) const isUser = props.role === ChatCompletionRole.User const isSystem = props.role === ChatCompletionRole.System