chore(monorepo/server): fix imports for hidden subtree

This commit is contained in:
Elian Doran 2025-04-18 12:40:35 +03:00
parent ad8b77564c
commit b0e97856bd
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import type { HiddenSubtreeItem } from "@triliumnext/commons";
import { t } from "i18next";
import type { HiddenSubtreeItem } from "./hidden_subtree.js";
export default function buildLaunchBarConfig() {
const sharedLaunchers: Record<string, Omit<HiddenSubtreeItem, "id">> = {

View File

@ -1,12 +1,12 @@
import path from "path";
import fs from "fs";
import type { HiddenSubtreeItem } from "./hidden_subtree.js";
import type NoteMeta from "./meta/note_meta.js";
import type { NoteMetaFile } from "./meta/note_meta.js";
import { fileURLToPath } from "url";
import { isDev } from "./utils.js";
import type BNote from "../becca/entities/bnote.js";
import becca from "../becca/becca.js";
import type { HiddenSubtreeItem } from "@triliumnext/commons";
export function getHelpHiddenSubtreeData() {
const srcRoot = path.join(path.dirname(fileURLToPath(import.meta.url)), "..");