From 9b668e1b13a824dcb9d9f57549484d5b5718ef15 Mon Sep 17 00:00:00 2001 From: ajaythapliyal Date: Thu, 2 Mar 2023 09:10:35 +0530 Subject: [PATCH] typo bug fix --- frontend/src/conversation/Conversation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/conversation/Conversation.tsx b/frontend/src/conversation/Conversation.tsx index b6230f19..f9763665 100644 --- a/frontend/src/conversation/Conversation.tsx +++ b/frontend/src/conversation/Conversation.tsx @@ -31,7 +31,7 @@ export default function Conversation() { return (
- {messages.length && ( + {messages.length > 0 && (
{messages.map((message, index) => { return (