From c66fee45412e6a7fa82d50028bdb156cf38ef8e3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 1 Feb 2026 02:07:35 +0100 Subject: [PATCH] Ensure folder children are only displayed if they exist --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index f1e6308..b997cb0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1340,7 +1340,7 @@ export default function App() { × - {expanded ? ( + {expanded && childEntries.length > 0 ? (
{childEntries.map((entry) => entry.kind === "folder"