fixed some bug

This commit is contained in:
Ren Amamiya 2023-03-24 11:08:36 +07:00
parent 47f6e6833b
commit e2fa8cbe03
3 changed files with 6 additions and 4 deletions

View File

@ -5,8 +5,8 @@ import { Key, memo } from 'react';
export const MessageList = memo(function MessageList({ data }: { data: any }) {
return (
<>
{data.map((item: string, index: Key) => (
<UserMini key={index} pubkey={item} />
{data.map((item: { pubkey: string }, index: Key) => (
<UserMini key={index} pubkey={item.pubkey} />
))}
</>
);

View File

@ -17,7 +17,7 @@ export const NoteConnector = memo(function NoteConnector() {
const [relays] = useAtom(relaysAtom);
const [activeAccount] = useAtom(activeAccountAtom);
const [isOnline] = useState(navigator.onLine);
const [isOnline] = useState(true);
const now = useRef(new Date());
useEffect(() => {

View File

@ -35,7 +35,9 @@ export const UserBase = memo(function UserBase({ pubkey }: { pubkey: string }) {
)}
</div>
<div className="flex w-full flex-1 flex-col items-start text-start">
<span className="font-medium leading-tight text-zinc-200">{profile?.display_name || profile?.name}</span>
<span className="truncate font-medium leading-tight text-zinc-200">
{profile?.display_name || profile?.name}
</span>
<span className="text-sm leading-tight text-zinc-400">{truncate(pubkey, 16, ' .... ')}</span>
</div>
</div>