maintenance: Clean up comments throughout component files

This commit is contained in:
2025-09-28 16:22:05 -05:00
parent 7f576bac73
commit 0c00c49850
11 changed files with 18 additions and 10 deletions

View File

@@ -48,6 +48,7 @@ const Dashboard = React.forwardRef((props, ref) => {
};
const filter = getFilterFromPath();
// Show sections based on URL filter or show both if no filter
const showPublished = !filter || filter === 'published';
const showDrafts = !filter || filter === 'drafts';