From c82ab3e8dbe239dbaa92c54482bbea5c9d5de8a9 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 17 Mar 2025 17:08:34 +0530 Subject: [PATCH] chore: revert debug changes --- .../components-next/Conversation/Chips/TypingIndicator.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/javascript/dashboard/components-next/Conversation/Chips/TypingIndicator.vue b/app/javascript/dashboard/components-next/Conversation/Chips/TypingIndicator.vue index f1955b371..bd4feacd9 100644 --- a/app/javascript/dashboard/components-next/Conversation/Chips/TypingIndicator.vue +++ b/app/javascript/dashboard/components-next/Conversation/Chips/TypingIndicator.vue @@ -30,15 +30,14 @@ const typingUsersList = useFunctionGetter( ); const isAnyoneTyping = computed(() => { - return true; - // return typingUsersList.value.length !== 0; + return typingUsersList.value.length !== 0; }); const typingUserNames = computed(() => { if (typingUsersList.value.length) { return getTypingUsersText(typingUsersList.value); } - return 'Shivam Mishra is typing'; + return ''; });