From 18b2aaedf6d77d62cec2ff71914f82a6fd911989 Mon Sep 17 00:00:00 2001 From: Test Date: Fri, 6 Mar 2026 21:57:00 +0100 Subject: [PATCH] fix: add missing visible field to buildNewEntry in useNoteActions Co-Authored-By: Claude Opus 4.6 --- src/hooks/useNoteActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useNoteActions.ts b/src/hooks/useNoteActions.ts index b4ec2068..6ba5522b 100644 --- a/src/hooks/useNoteActions.ts +++ b/src/hooks/useNoteActions.ts @@ -72,7 +72,7 @@ export function buildNewEntry({ path, slug, title, type, status }: NewEntryParam aliases: [], belongsTo: [], relatedTo: [], status, owner: null, cadence: null, archived: false, trashed: false, trashedAt: null, modifiedAt: now, createdAt: now, fileSize: 0, - snippet: '', wordCount: 0, relationships: {}, icon: null, color: null, order: null, outgoingLinks: [], sidebarLabel: null, template: null, sort: null, view: null, properties: {}, + snippet: '', wordCount: 0, relationships: {}, icon: null, color: null, order: null, outgoingLinks: [], sidebarLabel: null, template: null, sort: null, view: null, visible: null, properties: {}, } }