Event feed tweaks

This commit is contained in:
2024-12-22 23:52:10 -05:00
parent 6936cf84ca
commit 86c2c10187

View File

@@ -1121,8 +1121,7 @@ const EventCard = ({ event }) => {
const DEFAULT_METRICS = Object.values(METRIC_IDS);
const EventFeed = ({
title = "Live Event Feed",
description = "Real-time event stream",
title = "Event Feed",
selectedMetrics = DEFAULT_METRICS,
}) => {
const metrics = useMemo(() => selectedMetrics, [selectedMetrics]);
@@ -1622,7 +1621,7 @@ const EventFeed = ({
)}
</CardHeader>
<CardContent className="p-6 pt-0 flex-1 overflow-hidden -mt-2">
<CardContent className="p-0 pt-0 flex-1 overflow-hidden -mt-2">
<ScrollArea className="h-full">
{loading && !events.length ? (
<LoadingState />