chore: added author fallback a1d33479
Steve · 2025-11-06 21:42 1 file(s) · +2 −2
src/components/posts-list.tsx +2 −2
136 136
										{post.title}
137 137
									</span>
138 138
									<div className="flex items-center justify-between">
139 -
										{post.feedTitle && (
139 +
										{(post.feedTitle || post.author) && (
140 140
											<span className="text-muted-foreground truncate text-xs">
141 -
												{post.feedTitle}
141 +
												{post.feedTitle || post.author}
142 142
											</span>
143 143
										)}
144 144
										{post.publishedDate && (