diff options
Diffstat (limited to 'client-web/source/index.ts')
-rw-r--r-- | client-web/source/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts index e42cb74..852e48f 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -67,8 +67,8 @@ export async function main() { setup_keybinds(r) r.on_ready = () => { - new BottomMenu(r).shown = true - new MenuBr().shown = true + new BottomMenu(r) + new MenuBr() } document.body.append(ROOM_CONTAINER, OVERLAYS, LOGGER_CONTAINER) |