diff --git a/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.html b/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.html
index d2d2ca87e..7b6ec6d13 100644
--- a/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.html
+++ b/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.html
@@ -33,22 +33,10 @@
>instructions.
-
-
-
- For security reasons, you must setup LAN over a
- Tor connection.
-
-
-
+
Download Root CA
diff --git a/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.ts b/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.ts
index 827a82455..087449392 100644
--- a/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.ts
+++ b/frontend/projects/ui/src/app/pages/server-routes/lan/lan.page.ts
@@ -1,7 +1,4 @@
import { ChangeDetectionStrategy, Component } from '@angular/core'
-import { ConfigService } from 'src/app/services/config.service'
-import { PatchDB } from 'patch-db-client'
-import { DataModel } from 'src/app/services/patch-db/data-model'
@Component({
selector: 'lan',
@@ -10,14 +7,6 @@ import { DataModel } from 'src/app/services/patch-db/data-model'
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LANPage {
- readonly downloadIsDisabled = !this.config.isTor()
- readonly server$ = this.patch.watch$('server-info')
-
- constructor(
- private readonly config: ConfigService,
- private readonly patch: PatchDB,
- ) {}
-
installCert(): void {
document.getElementById('install-cert')?.click()
}