feat(breadcrumb): hide preview

This commit is contained in:
Elian Doran 2025-12-08 15:56:03 +02:00
parent 43ceb1982d
commit 6e29fe8d58
No known key found for this signature in database

View File

@ -18,7 +18,10 @@ export default function Breadcrumb() {
function BreadcrumbItem({ notePath }: { notePath: string }) {
return (
<NoteLink notePath={notePath} />
<NoteLink
notePath={notePath}
noPreview
/>
)
}