diff --git a/src/components/EventFooter.tsx b/src/components/EventFooter.tsx index 1e76f7c..9029bf8 100644 --- a/src/components/EventFooter.tsx +++ b/src/components/EventFooter.tsx @@ -14,6 +14,12 @@ import { RelayLink } from "./nostr/RelayLink"; interface EventFooterProps { event: NostrEvent; + clientName?: string; + clientAppPointer?: { + kind: number; + pubkey: string; + identifier: string; + } | null; } /** @@ -21,7 +27,11 @@ interface EventFooterProps { * Left: Kind badge (clickable to open KIND command) * Right: Relay count dropdown */ -export function EventFooter({ event }: EventFooterProps) { +export function EventFooter({ + event, + clientName, + clientAppPointer, +}: EventFooterProps) { const addWindow = useAddWindow(); // Get relays this event was seen on @@ -35,24 +45,44 @@ export function EventFooter({ event }: EventFooterProps) { }; return ( -