feat(chat): Handle user change

This commit is contained in:
Maieul BOYER 2026-01-11 13:52:00 +01:00 committed by Nigel
parent 0ec2b3007c
commit f14d618ed5
4 changed files with 363 additions and 351 deletions

View file

@ -10,7 +10,7 @@ import { setTitle } from "@app/routing";
* @param socket
*/
export function quitChat (socket: Socket) {
export function quitChat () {
const chatBox = document.getElementById("chatBox")!;
const overlay = document.querySelector('#overlay')!;
@ -26,4 +26,4 @@ export function quitChat (socket: Socket) {
showError('Failed to Quit Chat: Unknown error');
}
};
};