このコミットが含まれているのは:
2026-07-04 19:50:40 +09:00
コミット 4cc2dc5441
10個のファイルの変更542行の追加293行の削除
+1 -5
ファイルの表示
@@ -22,14 +22,10 @@ const PostList: FC<Props> = ({ posts, onClick }) => {
const setForLocationKey = useSharedTransitionStore (s => s.setForLocationKey)
const cardRef = useRef<HTMLDivElement> (null)
const visiblePosts =
settings.viewedPostDisplay === 'hide'
? posts.filter (post => !(post.viewed))
: posts
return (
<div className="flex flex-wrap gap-6 p-4">
{visiblePosts.map ((post, i) => {
{posts.map ((post, i) => {
const sharedId = `page-${ post.id }`
const layoutId = sharedId