Describe the bug
It seems that we have encountered a behavior similar to this old issue #611 , the typing indicator was showing even when the user was not typing.
As you can see in the below snippet we haven't customized anything related to the typing indicator.
const Channel = ({
channel,
}: Props) => {
return (
<StreamChannel
channel={channel}
keyboardVerticalOffset={0}
>
<MessageList />
{!isReadonly ? <MessageInput /> : null}
</StreamChannel>
);
};
export default Channel;
Dev environment info (please complete/provide the following information):
"stream-chat-react-native": "^5.4.2"
- react-native
- Any android or iOS version
To Reproduce
Reproduction steps aren't clear, this happened in a single conversation between two users.
Expected behavior
The typing indicator should not show when the user is not typing.
Additional context
N/A
Screenshots


Describe the bug
It seems that we have encountered a behavior similar to this old issue #611 , the typing indicator was showing even when the user was not typing.
As you can see in the below snippet we haven't customized anything related to the typing indicator.
Dev environment info (please complete/provide the following information):
"stream-chat-react-native": "^5.4.2"To Reproduce
Reproduction steps aren't clear, this happened in a single conversation between two users.
Expected behavior
The typing indicator should not show when the user is not typing.
Additional context
N/A
Screenshots

