We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 730b2c3 commit e9f7c21Copy full SHA for e9f7c21
package/src/components/Channel/Channel.tsx
@@ -781,9 +781,10 @@ const ChannelWithContext = <
781
}
782
783
// If the event is typing.start or typing.stop, set the typing state
784
- const isTypingEvent = event.type === 'typing.start' || event.type === 'typing.stop';
785
- if (isTypingEvent) {
786
- setTyping(channel);
+ if (event.type === 'typing.start' || event.type === 'typing.stop') {
+ if (event.user?.id !== client.userID) {
+ setTyping(channel);
787
+ }
788
return;
789
} else {
790
if (thread?.id) {
0 commit comments