From c7c4a40e49045fc174e96a2a7c90cc5ce8edb96c Mon Sep 17 00:00:00 2001 From: iris Date: Sat, 27 Jun 2026 19:26:20 +0200 Subject: [PATCH] fix(builds): remove unused form import (copy-paste residue from core.js) --- frontend/packages/dashboard/src/builds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/packages/dashboard/src/builds.js b/frontend/packages/dashboard/src/builds.js index c79781c8..afed59d2 100644 --- a/frontend/packages/dashboard/src/builds.js +++ b/frontend/packages/dashboard/src/builds.js @@ -10,7 +10,7 @@ // renderers here are direct copies from core.js / logs.js with only the // deep-link URL and count-pill id adjusted. -import { $, el, form, fmtAgeSecs, openStream, openBuildLogStream, initServerWarnings, bindAsyncForms } from './common.js'; +import { $, el, fmtAgeSecs, openStream, openBuildLogStream, initServerWarnings, bindAsyncForms } from './common.js'; import { fmtAgo, fmtElapsed, fmtDuration, truncate } from './util.js'; import { createTabStrip } from '@hive/shared/tabs.js';