page.redirect was not a function, causing the url not to redirect. als remove the # check so we are no longer serving ads

This commit is contained in:
evanpelle
2025-06-03 16:37:19 -07:00
committed by 1brucben
parent 48d7c9ca9f
commit d62b47e2b9
+2 -5
View File
@@ -244,11 +244,8 @@ class Client {
}
const lobbyId = ctx.params.lobbyId;
// Show news modal even if user loads game directly
const newsModal = document.querySelector("news-modal") as NewsModal;
if (newsModal) {
newsModal.open();
}
const modal = document.querySelector("news-modal") as NewsModal;
if (modal) modal.open();
this.joinModal.open(lobbyId);