From 2180afe23ea790468c5309710f441807d2c427cb Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Thu, 14 Nov 2024 21:53:09 +0200 Subject: [PATCH] app: fix location.reload() parameter count Error: Expected 0 arguments, but got 1. (ts) // current game and names etc. Until that's fixed, just reload. location.reload(true); } --- src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.svelte b/src/App.svelte index 18c7d4a..ceefd83 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -69,7 +69,7 @@ function ui_goto_start_page(): void { // FIXME: This can't just set ui_page = UiPage.START, because it messes up // current game and names etc. Until that's fixed, just reload. - location.reload(true); + location.reload(); } function ui_goto_play_page(): void {