{/* Loading overlay */}
{loading && (
Loading...
)}
{/* Error state */}
{sectionError && !loading && (
)}
{/* ── Status Panel ── */}
{activeSection === "status" && !loading && status && (
)}
{/* ── Changes Panel ── */}
{activeSection === "changes" && !loading && (
)}
{/* ── Commits Panel ── */}
{activeSection === "commits" && !loading && (
= commitsLimit && commitsLimit < 100}
copyToClipboard={copyToClipboard}
/>
)}
{/* ── Branches Panel ── */}
{activeSection === "branches" && !loading && (
)}
{/* ── Worktrees Panel ── */}
{activeSection === "worktrees" && !loading && (
)}
{/* ── Stashes Panel ── */}
{activeSection === "stashes" && !loading && (
)}
{/* ── Remotes Panel ── */}
{activeSection === "remotes" && !loading && (
)}