import { MessageCircle } from 'lucide-react' import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' import Notification from './Notification' export function DiscussionNotification({ notification }: { notification: Event }) { const { t } = useTranslation() // Get the topic from t-tags const topicTags = notification.tags.filter(tag => tag[0] === 't' && tag[1]) const topics = topicTags.map(tag => tag[1]) const topicString = topics.length > 0 ? topics.join(', ') : t('general') return ( } targetEvent={notification} showStats={false} /> ) }