From 2e2b31262ba13e485701cced02bdeaebed0ca920 Mon Sep 17 00:00:00 2001 From: Timothy Cardoza Date: Thu, 19 Mar 2026 18:49:48 -0500 Subject: [PATCH] Migration notifications fixed --- src/store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.ts b/src/store/index.ts index c7a8619..6fa238b 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -1731,7 +1731,7 @@ export const initStore = async () => { const foundTagNames = new Set(); store.tasks.forEach(t => t.tags?.forEach(tag => foundTagNames.add(tag))); for (const tagName of foundTagNames) { - if (tagName === "__template__") continue; + if (tagName === "__template__" || tagName.startsWith("@") || tagName.startsWith("#")) continue; if (!store.tagDefinitions.find(d => d.name === tagName)) { await upsertTagDefinition(tagName, 5, undefined, document.documentElement.classList.contains("dark") ? "dark" : "light"); }