From 7598c443b10d79254472d30defb3f5ff7e1fbc7b Mon Sep 17 00:00:00 2001 From: djoser Date: Mon, 27 Jul 2026 17:08:02 +0200 Subject: [PATCH] fix routing --- src/app.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app.ts b/src/app.ts index 397f4e5..135dd18 100644 --- a/src/app.ts +++ b/src/app.ts @@ -53,8 +53,7 @@ export class App { this.router.onChange((route) => this.applyRoute(route)) const initial = this.router.start() - this.scene = initial.scene - this.overlay.setScene(this.scene) + this.applyRoute(initial) this.router.replace(Router.sceneToBasePath(this.scene)) this.resize()