aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedItems.tsx
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 11:23:32 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 11:23:32 -0800
commitfc2bc854f4e3bae3503d5000f1fbc414bfa7e0cc (patch)
tree3775145f31422a2b7d58e28bd960c9652bcf7aae /frontend/src/components/FeedItems.tsx
parentb97c7f685ed70d9add55301d1169478e52b57801 (diff)
downloadneko-fc2bc854f4e3bae3503d5000f1fbc414bfa7e0cc.tar.gz
neko-fc2bc854f4e3bae3503d5000f1fbc414bfa7e0cc.tar.bz2
neko-fc2bc854f4e3bae3503d5000f1fbc414bfa7e0cc.zip
UI Refinements: remove redundant header and fix global monospace font stack
Diffstat (limited to 'frontend/src/components/FeedItems.tsx')
-rw-r--r--frontend/src/components/FeedItems.tsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/frontend/src/components/FeedItems.tsx b/frontend/src/components/FeedItems.tsx
index 9e732a0..aaec2f4 100644
--- a/frontend/src/components/FeedItems.tsx
+++ b/frontend/src/components/FeedItems.tsx
@@ -160,16 +160,9 @@ export default function FeedItems() {
if (loading) return <div className="feed-items-loading">Loading items...</div>;
if (error) return <div className="feed-items-error">Error: {error}</div>;
- let title = 'Items';
- if (tagName) title = `Tag: ${tagName}`;
- else if (feedId) title = 'Feed Items';
- else if (filterFn === 'starred') title = 'Starred Items';
- else if (filterFn === 'all') title = 'All Items';
- else title = 'Unread Items';
return (
<div className="feed-items">
- <h2>{title}</h2>
{items.length === 0 ? (
<p>No items found.</p>
) : (