diff --git a/src/components/NoteStats/ZapButton.tsx b/src/components/NoteStats/ZapButton.tsx index c23cdb8c..40302477 100644 --- a/src/components/NoteStats/ZapButton.tsx +++ b/src/components/NoteStats/ZapButton.tsx @@ -35,6 +35,7 @@ export default function ZapButton({ event }: { event: Event }) { useEffect(() => { client.fetchProfile(event.pubkey).then((profile) => { if (!profile) return + if (pubkey === profile.pubkey) return const lightningAddress = getLightningAddressFromProfile(profile) if (lightningAddress) setDisable(false) })