From d7c1cc00abe7c8097625ee905a1285aa0794a598 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Tue, 17 Feb 2026 19:47:48 -0800 Subject: Remove visual 'selected' state highlight from feed items --- frontend-vanilla/src/components/FeedItem.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend-vanilla/src/components') diff --git a/frontend-vanilla/src/components/FeedItem.ts b/frontend-vanilla/src/components/FeedItem.ts index 212e9dd..e58aac8 100644 --- a/frontend-vanilla/src/components/FeedItem.ts +++ b/frontend-vanilla/src/components/FeedItem.ts @@ -1,9 +1,9 @@ import type { Item } from '../types'; -export function createFeedItem(item: Item, isSelected: boolean = false): string { +export function createFeedItem(item: Item): string { const date = new Date(item.publish_date).toLocaleDateString(); return ` -
  • +