diff --git a/apps/client/src/widgets/collections/legacy/ListPrintView.tsx b/apps/client/src/widgets/collections/legacy/ListPrintView.tsx index 8cde17687..b6d642d1b 100644 --- a/apps/client/src/widgets/collections/legacy/ListPrintView.tsx +++ b/apps/client/src/widgets/collections/legacy/ListPrintView.tsx @@ -86,6 +86,10 @@ function isNotePrintable(note: FNote) { return false; } + if (note.type === "file") { + return false; + } + return true; }