From ad21eac5bcc677834955e562a8d7e45c209e35ad Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 22 Aug 2026 12:44:33 -0400 Subject: [PATCH] editor: drop the adapter import that went with backlinks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `repo` reached the editor for exactly two calls — `repo.notes.backlinks` and `repo.notes.linkSearch` — and both left with the linking system. vue-tsc runs with noUnusedLocals, so one stale import failed the whole shared-frontend build and took both desktop lanes down with it (TS6133). My local sweep checked for dangling *references*; it never checked the inverse, that every import still has one. It does now, across all fifteen files that removal touched — `repo` was the only one. --- frontend/src/components/NoteEditor.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/NoteEditor.vue b/frontend/src/components/NoteEditor.vue index 3abe5e7..7593196 100644 --- a/frontend/src/components/NoteEditor.vue +++ b/frontend/src/components/NoteEditor.vue @@ -1,6 +1,5 @@