fix(git): handle empty repositories gracefully and show empty state in UI

This commit is contained in:
Fusion
2026-05-21 10:38:20 +02:00
parent 35a251a0b4
commit fba01ddfb2
2 changed files with 12 additions and 1 deletions
+3
View File
@@ -364,6 +364,9 @@ const FileBrowser = ({
<Icon name="folder" size="sm" /> ..
</button>
)}
{entries.length === 0 && (
<p className="muted">No files in this repository yet.</p>
)}
{entries.map((entry) => {
const fileStatus = entry.type === "file" ? getFileStatus(entry.path) : null;
return (