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 ''; });