From adfe4904806b86e928d128f18cee47e9dbcdb9be Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 7 Jan 2026 10:43:02 +0200 Subject: [PATCH] chore(core): fix import --- packages/trilium-core/src/routes/api/tree.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/trilium-core/src/routes/api/tree.ts b/packages/trilium-core/src/routes/api/tree.ts index 7a7fe8f98..3b27f6d2e 100644 --- a/packages/trilium-core/src/routes/api/tree.ts +++ b/packages/trilium-core/src/routes/api/tree.ts @@ -2,9 +2,9 @@ import type { AttributeRow, BranchRow, NoteRow } from "@triliumnext/commons"; import type { Request } from "express"; import becca from "../../becca/becca.js"; -import { NotFoundError } from "src/errors.js"; -import { getLog } from "src/services/log.js"; -import type BNote from "src/becca/entities/bnote.js"; +import { NotFoundError } from "../../errors.js"; +import { getLog } from "../../services/log.js"; +import type BNote from "../../becca/entities/bnote.js"; function getNotesAndBranchesAndAttributes(_noteIds: string[] | Set) { const noteIds = new Set(_noteIds);