diff --git a/lumina/components/KIND20Card.tsx b/lumina/components/KIND20Card.tsx index 2fe4a9d..744aa08 100644 --- a/lumina/components/KIND20Card.tsx +++ b/lumina/components/KIND20Card.tsx @@ -43,6 +43,7 @@ const KIND20Card: React.FC = ({ const createdAt = new Date(event.created_at * 1000) const hrefProfile = `/profile/${nip19.npubEncode(pubkey)}` const profileImageSrc = userData?.picture || "https://robohash.org/" + pubkey + const uploadedVia = tags.find((tag) => tag[0] === "client")?.[1] return ( <> @@ -103,7 +104,10 @@ const KIND20Card: React.FC = ({ - {createdAt.toLocaleString()} +
+ {createdAt.toLocaleString()} + {uploadedVia && Uploaded via {uploadedVia}} +