From 078e1a7fc90775462166778e31edccb739302c2f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 22 Feb 2026 20:32:15 +0100 Subject: [PATCH] fix(ui): remove unused Lit import in overview view --- ui/src/ui/views/overview.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/ui/views/overview.ts b/ui/src/ui/views/overview.ts index 7a1e1dfaf..56889c0f6 100644 --- a/ui/src/ui/views/overview.ts +++ b/ui/src/ui/views/overview.ts @@ -1,4 +1,4 @@ -import { html, nothing } from "lit"; +import { html } from "lit"; import { ConnectErrorDetailCodes } from "../../../../src/gateway/protocol/connect-error-details.js"; import { t, i18n, type Locale } from "../../i18n/index.ts"; import { formatRelativeTimestamp, formatDurationHuman } from "../format.ts";