diff --git a/src/app/module/chat/infra/socket/signalR.ts b/src/app/module/chat/infra/socket/signalR.ts index 3fab3a0ce..14d14ccbf 100644 --- a/src/app/module/chat/infra/socket/signalR.ts +++ b/src/app/module/chat/infra/socket/signalR.ts @@ -180,7 +180,7 @@ export class SignalRConnection { this.messageSubject.next(message); }); - this.hubConnection.on('Typing', (_typing: UserTypingDTO) => { + this.hubConnection.on('TypingMessage', (_typing: UserTypingDTO) => { console.log('Typing', _typing) this.typingSubject.next(_typing); });