Remove debug
Some checks failed
Publish JS SDK / docker (push) Failing after 14s

This commit is contained in:
Braydon 2024-09-09 21:20:48 -04:00
parent b25d8e8634
commit 9a8214b253

@ -44,7 +44,6 @@ export const useTetherWS = (
) as UserStatusPacket; ) as UserStatusPacket;
if (statusPacket.op === 1) { if (statusPacket.op === 1) {
setUser(statusPacket.user); setUser(statusPacket.user);
console.log("user status update", statusPacket.user);
} }
}); });
}; };