From e1079f954e4393745fa0c45d194d42e985b6ca6a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 26 Mar 2026 23:26:14 +0200 Subject: [PATCH] chore(core): fix one more type error --- packages/trilium-core/src/services/bootstrap_utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/trilium-core/src/services/bootstrap_utils.ts b/packages/trilium-core/src/services/bootstrap_utils.ts index 5970226ab9..10ecb93417 100644 --- a/packages/trilium-core/src/services/bootstrap_utils.ts +++ b/packages/trilium-core/src/services/bootstrap_utils.ts @@ -44,7 +44,7 @@ export default function getSharedBootstrapItems(assetPath: string, dbInitialized maxEntityChangeIdAtLoad: sql.getValue("SELECT COALESCE(MAX(id), 0) FROM entity_changes"), maxEntityChangeSyncIdAtLoad: sql.getValue("SELECT COALESCE(MAX(id), 0) FROM entity_changes WHERE isSynced = 1"), isProtectedSessionAvailable: protected_session.isProtectedSessionAvailable(), - themeCssUrl: getThemeCssUrl(theme, commonItems.assetPath, themeNote), + themeCssUrl: getThemeCssUrl(theme, commonItems.assetPath, themeNote) as string | false, themeUseNextAsBase: themeNote?.getAttributeValue("label", "appThemeBase") as "next" | "next-light" | "next-dark", } }