rebase 2
This commit is contained in:
@ -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";
|
||||
|
@ -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>
|
||||
);
|
||||
})}
|
||||
|
Reference in New Issue
Block a user