fix: removed console.log in UserPage.tsx

This commit is contained in:
Lukian 2025-04-08 22:22:51 +02:00
parent 132b1f3c06
commit d6a4f991bd

View file

@ -79,7 +79,6 @@ export default function ChannelPage() {
socket.addEventListener('message', function (event) {
const data = JSON.parse(event.data);
console.log(data);
if ((data.type === "new_message" || data.type === "delete_message") && data.channel_id === channel?.id) {
axios
.get(`/api/channels/${name}/messages`).then((res) => {