Skip to content

Typing indicator is showing when the user isn't typing #1930

@DaveHellsmith

Description

@DaveHellsmith

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
image
image

Metadata

Metadata

Assignees

Labels

BugSomething isn't working in the SDKNeeds More InformationFurther information needed from the requester

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions