website cleanup

This commit is contained in:
2025-12-24 21:44:58 +01:00
parent 9b683a59d3
commit d78854a4c6
277 changed files with 6141 additions and 2693 deletions

View File

@@ -1,9 +1,9 @@
import FeedEmptyState from '@/components/feed/FeedEmptyState';
import FeedItemCard from '@/components/feed/FeedItemCard';
import type { FeedItemDTO } from '@core/social/application/dto/FeedItemDTO';
import type { DashboardFeedItemSummaryViewModel } from '@/lib/view-models/DashboardOverviewViewModel';
interface FeedListProps {
items: FeedItemDTO[];
items: DashboardFeedItemSummaryViewModel[];
}
export default function FeedList({ items }: FeedListProps) {
@@ -18,4 +18,4 @@ export default function FeedList({ items }: FeedListProps) {
))}
</div>
);
}
}