From 0f16ed8d46b5abfd1fd2aedb8c7114ee2955135e Mon Sep 17 00:00:00 2001 From: codytseng Date: Thu, 7 Aug 2025 23:06:43 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/QuoteList/index.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/QuoteList/index.tsx b/src/components/QuoteList/index.tsx index ce240be..79cc45a 100644 --- a/src/components/QuoteList/index.tsx +++ b/src/components/QuoteList/index.tsx @@ -1,4 +1,4 @@ -import { BIG_RELAY_URLS } from '@/constants' +import { BIG_RELAY_URLS, ExtendedKind } from '@/constants' import { useNostr } from '@/providers/NostrProvider' import { useUserTrust } from '@/providers/UserTrustProvider' import client from '@/services/client.service' @@ -39,7 +39,13 @@ export default function QuoteList({ event, className }: { event: Event; classNam urls: relayUrls, filter: { '#q': [event.id], - kinds: [kinds.ShortTextNote], + kinds: [ + kinds.ShortTextNote, + kinds.Highlights, + kinds.LongFormArticle, + ExtendedKind.COMMENT, + ExtendedKind.POLL + ], limit: LIMIT } }