new notes btn positioning
This commit is contained in:
@ -91,7 +91,15 @@ export function TimelineRenderer(props: TimelineRendererProps) {
|
||||
className="card latest-notes latest-notes-fixed pointer fade-in"
|
||||
onClick={() => props.showLatest(true)}>
|
||||
{props.latest.slice(0, 3).map(p => {
|
||||
return <ProfileImage pubkey={p} showUsername={false} link={""} showFollowDistance={false} />;
|
||||
return (
|
||||
<ProfileImage
|
||||
pubkey={p}
|
||||
showProfileCard={false}
|
||||
showUsername={false}
|
||||
link={""}
|
||||
showFollowDistance={false}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
<FormattedMessage
|
||||
defaultMessage="{n} new {n, plural, =1 {note} other {notes}}"
|
||||
|
Reference in New Issue
Block a user