diff --git a/src/components/ReplyNoteList/index.tsx b/src/components/ReplyNoteList/index.tsx index ca65c1e..570eb34 100644 --- a/src/components/ReplyNoteList/index.tsx +++ b/src/components/ReplyNoteList/index.tsx @@ -21,15 +21,7 @@ type TRootInfo = { type: 'event'; id: string; pubkey: string } | { type: 'I'; id const LIMIT = 100 const SHOW_COUNT = 10 -export default function ReplyNoteList({ - index, - event, - className -}: { - index?: number - event: NEvent - className?: string -}) { +export default function ReplyNoteList({ index, event }: { index?: number; event: NEvent }) { const { t } = useTranslation() const { currentIndex } = useSecondaryPage() const { hideUntrustedInteractions, isUserTrusted } = useUserTrust() @@ -238,7 +230,7 @@ export default function ReplyNoteList({ }, []) return ( - <> +