diff --git a/src/lib/navigation.ts b/src/lib/navigation.ts index 8880aea..79da3ed 100644 --- a/src/lib/navigation.ts +++ b/src/lib/navigation.ts @@ -15,7 +15,6 @@ export interface TreeItem { * Checks if an entry is hidden (starts with an underscore) * * @param entry {EntryType} the entry to check for visibility - * @returns {boolean} */ export function isHidden(entry: EntryType) { return entry.getBaseName().startsWith("_")