Problem
The dashboard renders a Pinned section based on doc.pinned (dashboard-main.tsx:84-88), but schema.prisma has no pinned column — it's always undefined. The grid-card pin button's onClick is commented out (document-grid-card.tsx:40-44) and the dropdown Pin item is permanently disabled (document-card-dropdown.tsx:78-85). The feature can never work as rendered.
Fix
Either implement end-to-end (schema migration, API toggle, wire handlers) or strip the dead pin UI.
Problem
The dashboard renders a Pinned section based on
doc.pinned(dashboard-main.tsx:84-88), butschema.prismahas no pinned column — it's always undefined. The grid-card pin button's onClick is commented out (document-grid-card.tsx:40-44) and the dropdown Pin item is permanently disabled (document-card-dropdown.tsx:78-85). The feature can never work as rendered.Fix
Either implement end-to-end (schema migration, API toggle, wire handlers) or strip the dead pin UI.