fix(print): skip files from being printed

This commit is contained in:
Elian Doran 2025-12-24 17:56:15 +02:00
parent 2afc8d181d
commit 84c40eb233
No known key found for this signature in database

View File

@ -86,6 +86,10 @@ function isNotePrintable(note: FNote) {
return false;
}
if (note.type === "file") {
return false;
}
return true;
}