diff options
Diffstat (limited to 'src/web/app/mobile/router.ts')
| -rw-r--r-- | src/web/app/mobile/router.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/mobile/router.ts b/src/web/app/mobile/router.ts index afb9aa6201..050fa7fc2b 100644 --- a/src/web/app/mobile/router.ts +++ b/src/web/app/mobile/router.ts @@ -32,7 +32,7 @@ export default (mios: MiOS) => { route('*', notFound); function index() { - mios.isSignedin ? home() : entrance(); + mios.isSignedIn ? home() : entrance(); } function home() { |