This commit is contained in:
zmeyer44 2023-11-09 16:37:37 -06:00
parent 0323860196
commit 05f3a9062b

View File

@ -9,7 +9,7 @@ import { getTagValues } from "@/lib/nostr/utils";
import { fromUnix, daysOffset } from "@/lib/utils/dates"; import { fromUnix, daysOffset } from "@/lib/utils/dates";
import Spinner from "@/components/spinner"; import Spinner from "@/components/spinner";
import CalendarSection, { CalendarSectionLoading } from "./CalendarSection"; import CalendarSection, { CalendarSectionLoading } from "./CalendarSection";
import { uniqBy } from "ramda";
type EventsTimelineProps = { type EventsTimelineProps = {
filter?: NDKFilter; filter?: NDKFilter;
loader?: () => JSX.Element; loader?: () => JSX.Element;
@ -23,7 +23,9 @@ export default function EventsTimeline({
const { events, isLoading } = useEvents({ const { events, isLoading } = useEvents({
filter: { kinds: [31923 as NDKKind], ...filter }, filter: { kinds: [31923 as NDKKind], ...filter },
}); });
const eventsByDay = groupEventsByDay(events); const eventsByDay = groupEventsByDay(
uniqBy((e) => getTagValues("d", e.tags), events),
);
if (isLoading) { if (isLoading) {
if (Loader) { if (Loader) {