Skip to content

Commit

Permalink
fix(server/): removed unnecessary consoles from messageController
Browse files Browse the repository at this point in the history
  • Loading branch information
AdwaithAthman committed Dec 19, 2023
1 parent f1a0f1d commit ce0fa54
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/src/adapters/messageController/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ const messageController = (
const getAllMessagesFromChat = asyncHandler(
async (req: Request, res: Response) => {
const { chatId } = req.params as unknown as { chatId: string };
console.log("chatId at controller: ", chatId);
const messages = await handleGetAllMessagesFromChat(
chatId,
messageDbRepository
Expand Down

0 comments on commit ce0fa54

Please sign in to comment.