feat(api): Implement received hand event handling and UI updates

This commit is contained in:
2025-11-23 17:39:36 +01:00
committed by Janis
parent 11478a096d
commit 5136d14522
9 changed files with 124 additions and 7 deletions

View File

@@ -87,7 +87,7 @@ class UserWebsocketActor(
}
def transmitEventToClient(event: SimpleEvent): Unit = {
val jsonString = WebsocketEventMapper.toJsonString(event)
val jsonString = WebsocketEventMapper.toJson(event)
out ! jsonString
}