diff --git a/frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx b/frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx
index 77d131625f33cf840778e843cd034c96c0a5adf4..1ff13e772e3ae627e51cd4331868637821356bd1 100644
--- a/frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx
+++ b/frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx
@@ -150,13 +150,11 @@ export default function WorkspaceSettings({ workspace }) {
                   Chat History
                 </label>
                 <p className="text-xs text-gray-600 dark:text-stone-400">
-                  Chat history: The number of previous chats that 
-                  will be included in the response's short-term memory.
+                  The number of previous chats that will be included in the
+                  response's short-term memory.
                   <br />
-                  Recommend 20. Anything more than 45 is likely to lead to 
+                  Recommend 20. Anything more than 45 is likely to lead to
                   continuous chat failures depending on message size.
-                  <br />
-                  Recommended: 20
                 </p>
               </div>
               <input
diff --git a/server/models/workspace.js b/server/models/workspace.js
index 8abd7b7c665c53726f1011278181be3487270062..1f4ca84afc5c260d46d48f51900a18ca81400c7e 100644
--- a/server/models/workspace.js
+++ b/server/models/workspace.js
@@ -113,7 +113,7 @@ const Workspace = {
     const values = Object.values(data);
     if (validKeys.length === 0 || validKeys.length !== values.length)
       return { workspace: { id }, message: "No valid fields to update!" };
-      
+
     const template = `UPDATE ${this.tablename} SET ${validKeys.map((key) => {
       return `${key}=?`;
     })} WHERE id = ?`;
@@ -127,7 +127,7 @@ const Workspace = {
         return { success: false, message: error.message };
       });
 
-      db.close();
+    db.close();
     if (!success) {
       return { workspace: null, message };
     }
diff --git a/server/utils/chats/index.js b/server/utils/chats/index.js
index 58381cb566089dbfa5c8a26059aef5af0dc989b0..cd4c2942e971fb3e21c5e6194adc99b0988b57f8 100644
--- a/server/utils/chats/index.js
+++ b/server/utils/chats/index.js
@@ -105,8 +105,11 @@ async function chatWithWorkspace(workspace, message, chatMode = "chat") {
     };
   } else {
     var messageLimit = workspace?.openAiHistory;
-    
-    const rawHistory = await WorkspaceChats.forWorkspace(workspace.id, messageLimit);
+
+    const rawHistory = await WorkspaceChats.forWorkspace(
+      workspace.id,
+      messageLimit
+    );
     const chatHistory = convertToPromptHistory(rawHistory);
     const {
       response,