emitting user status changes working

This commit is contained in:
talksik
2022-03-23 21:25:50 -04:00
parent 500330e02c
commit 6e1d813732
2 changed files with 22 additions and 7 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ export default function useSocketData() {
socket.on(
SocketChannels.SEND_USER_STATUS_UPDATE,
(userGoogleId: string, newStatus: UserStatus) => {
console.log("someone updated their status...hmmm");
console.log(`${userGoogleId} updated their status...hmmm`);
}
);