diff --git a/server/endpoints/system.js b/server/endpoints/system.js
index fe54f6d2bb340d5847c971eec8cd45935e7f6452..982d5ecaae552f7e47e0d1c83eb6ebb4333c28e4 100644
--- a/server/endpoints/system.js
+++ b/server/endpoints/system.js
@@ -792,7 +792,7 @@ function systemEndpoints(app) {
       try {
         const { id } = request.params;
         await WorkspaceChats.delete({ id: Number(id) });
-        response.status(200).json({ success, error });
+        response.sendStatus(200).end();
       } catch (e) {
         console.error(e);
         response.sendStatus(500).end();