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 09d9b3c commit fd28421Copy full SHA for fd28421
package/src/components/Channel/Channel.tsx
@@ -784,6 +784,7 @@ const ChannelWithContext = <
784
const isTypingEvent = event.type === 'typing.start' || event.type === 'typing.stop';
785
if (isTypingEvent) {
786
setTyping(channel);
787
+ return;
788
} else {
789
if (thread?.id) {
790
const updatedThreadMessages =
@@ -817,6 +818,7 @@ const ChannelWithContext = <
817
818
819
// only update channel state if the events are not the previously subscribed useEffect's subscription events
820
if (channel && channel.initialized) {
821
+ console.log('COPYING CHANNEL STATE LOL');
822
copyChannelState();
823
}
824
0 commit comments