This commit is contained in:
ennmichael
2023-02-08 23:04:55 +01:00
committed by Kieran
parent b45bcef1fb
commit 45a210fdb5
4 changed files with 7 additions and 8 deletions

View File

@ -31,7 +31,7 @@ import {
import { NoteCreator } from "Element/NoteCreator";
import Reactions from "Element/Reactions";
import SendSats from "Element/SendSats";
import { parseZap, ParsedZap, ZapsSummary } from "Element/Zap";
import { parseZap, ZapsSummary } from "Element/Zap";
import { useUserProfile } from "Feed/ProfileFeed";
import { default as NEvent } from "Nostr/Event";
import { RootState } from "State/Store";

View File

@ -126,10 +126,10 @@ const Reactions = ({
<span className="zap-amount">{formatShort(z.amount)}</span>
</div>
<ProfileImage
pubkey={z.zapper!}
pubkey={z.zapper ?? ""}
subHeader={<>{z.content}</>}
/>
<FollowButton pubkey={z.zapper!} />
<FollowButton pubkey={z.zapper ?? ""} />
</div>
);
})}