remove name from card

This commit is contained in:
smolgrrr 2023-11-09 23:48:25 +11:00
parent 7302e5305d
commit 2ebf854dd5
2 changed files with 5 additions and 7 deletions

View File

@ -65,17 +65,15 @@ const PostCard = ({
<div className="flex items-center gap-2.5"> <div className="flex items-center gap-2.5">
{metadataParsed ? {metadataParsed ?
<img <img
className={`h-8 w-8 rounded-full`} key = {key}
className={`h-5 w-5 rounded-full`}
src={metadataParsed?.picture ?? icon} src={metadataParsed?.picture ?? icon}
alt="" alt=""
loading="lazy" loading="lazy"
decoding="async"/> decoding="async"/>
: :
<div className={`h-7 w-7 ${icon} rounded-full`} /> <div className={`h-4 w-4 ${icon} rounded-full`} />
} }
<div className="text-md font-semibold">
{metadataParsed?.name ?? 'Anonymous'}
</div>
</div> </div>
<div className="flex items-center ml-auto gap-2.5"> <div className="flex items-center ml-auto gap-2.5">
<div className="inline-flex text-xs text-neutral-600 gap-0.5"> <div className="inline-flex text-xs text-neutral-600 gap-0.5">
@ -96,7 +94,7 @@ const PostCard = ({
<span className="text-xs text-gray-500">Reply to: </span> <span className="text-xs text-gray-500">Reply to: </span>
{uniqBy(repliedTo, 'pubkey').map((event, index) => ( {uniqBy(repliedTo, 'pubkey').map((event, index) => (
<div key={index}> <div key={index}>
{event.kind == 0 ? ( {event.kind === 0 ? (
<img className={`h-5 w-5 rounded-full`} src={getMetadata(event)?.picture} /> <img className={`h-5 w-5 rounded-full`} src={getMetadata(event)?.picture} />
) : ( ) : (
<div className={`h-5 w-5 ${getIconFromHash(event.pubkey)} rounded-full`} /> <div className={`h-5 w-5 ${getIconFromHash(event.pubkey)} rounded-full`} />

View File

@ -24,7 +24,7 @@ export const subGlobalFeed = (onEvent: SubCallback) => {
...(prefix && {ids: ['0'.repeat(prefix)]}), ...(prefix && {ids: ['0'.repeat(prefix)]}),
kinds: [1], kinds: [1],
since: Math.floor((Date.now() * 0.001) - (24 * 60 * 60)), since: Math.floor((Date.now() * 0.001) - (24 * 60 * 60)),
limit: 350, limit: 500,
}, },
unsub: true unsub: true
}); });