update comments

This commit is contained in:
timothycarambat 2024-02-02 13:45:21 -08:00
parent 9fc45daf77
commit cccec69293
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import ChatRow from "./ChatRow";
import Embed from "@/models/embed";
export default function EmbedChats() {
// TODO: Add export of embed chats
// TODO [FEAT]: Add export of embed chats
return (
<div className="w-screen h-screen overflow-hidden bg-sidebar flex">
{!isMobile && <Sidebar />}

View File

@ -24,7 +24,6 @@ function chatEndpoints(app) {
async (request, response) => {
try {
const user = await userFromSession(request, response);
// console.log("user", user);
const { slug } = request.params;
const { message, mode = "query" } = reqBody(request);