Skip to content

Commit

Permalink
fix(server): removed unnecessayconsoles from chatController
Browse files Browse the repository at this point in the history
  • Loading branch information
AdwaithAthman committed Dec 19, 2023
1 parent 10c042a commit f1a0f1d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/src/adapters/chatController/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const chatController = (
async (req: Request, res: Response) => {
const { userId, otherUserId }: { userId: string; otherUserId: string } =
req.body;
console.log("otherUserId: ", otherUserId);
const chat = await handleAccessOrCreateChat(
userId,
otherUserId,
Expand Down Expand Up @@ -136,7 +135,6 @@ const chatController = (

const addGroupDp = asyncHandler(async (req: Request, res: Response) => {
const { groupId } = req.params as unknown as { groupId: string };
console.log("req.file of addGroupDp: ", req.file);
const {
buffer,
mimetype,
Expand Down

0 comments on commit f1a0f1d

Please sign in to comment.