diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx
index 39e3c5c474d6893d8cc453e41eb11d1fbd35be4b..1f4b47fad0bfd9efe6b8cb0299611ad869c6cd60 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx
@@ -96,7 +96,7 @@ const HistoricalMessage = ({
               saveChanges={saveEditedMessage}
             />
           ) : (
-            <div className="overflow-x-scroll break-words show-scrollbar">
+            <div className="overflow-x-scroll break-words">
               <span
                 className="flex flex-col gap-y-1"
                 dangerouslySetInnerHTML={{
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx
index b98617917473a2cc23de9f07fbe9dae5d9e4f7e7..3dd100dd4a09373d01eeb7b18d7a98e44b6f139a 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx
@@ -62,7 +62,7 @@ const PromptReply = ({
         <div className="flex gap-x-5">
           <WorkspaceProfileImage workspace={workspace} />
           <span
-            className="overflow-x-scroll break-words show-scrollbar"
+            className="overflow-x-scroll break-words"
             dangerouslySetInnerHTML={{ __html: renderMarkdown(reply) }}
           />
         </div>