From 72e2ae636e75873f773485394ae708fca0347a37 Mon Sep 17 00:00:00 2001 From: en Date: Fri, 28 Feb 2025 13:34:28 +0100 Subject: [PATCH] fix(notes): discovery notes --- src/pages/feed/FeedTabPosts.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/feed/FeedTabPosts.tsx b/src/pages/feed/FeedTabPosts.tsx index db83cdf..2009a49 100644 --- a/src/pages/feed/FeedTabPosts.tsx +++ b/src/pages/feed/FeedTabPosts.tsx @@ -75,7 +75,7 @@ export const FeedTabPosts = () => { prev.find( (e) => e.id === ndkEvent.id || - ndkEvents.findIndex((n) => n.id === ndkEvent.id) === -1 + ndkEvents.findIndex((n) => n.id === ndkEvent.id) !== -1 ) ) { return [...prev]