removed resource intensive logging in svelte

This commit is contained in:
2026-02-28 14:37:35 +08:00
parent ea8f41f852
commit 9c6c447205

View File

@@ -10,7 +10,6 @@ export async function initInteractionListeners() {
unlistenReceived = await listen<InteractionPayloadDto>(
"interaction-received",
(event) => {
console.log("Received interaction:", event.payload);
addInteraction(event.payload);
},
);