diff --git a/src/components/UserWithPFPInCell.tsx b/src/components/UserWithPFPInCell.tsx index ab5055fb8a..78f6d3bc12 100644 --- a/src/components/UserWithPFPInCell.tsx +++ b/src/components/UserWithPFPInCell.tsx @@ -14,20 +14,23 @@ interface IUserWithPFPInCell { export const UserWithPFPInCell: FC = ({ user }) => { const pfpToken = useGiverPFPToken(user?.walletAddress, user?.avatar); - console.log(addressToUserView(user?.walletAddress?.toLowerCase())); + const userProfileLink = + addressToUserView(user?.walletAddress?.toLowerCase()) || ''; const name = - user?.name || shortenAddress(user?.walletAddress?.toLowerCase()); + user?.name || + shortenAddress(user?.walletAddress?.toLowerCase()) || + '\u200C'; return pfpToken ? ( - - {name || '\u200C'}{' '} + + {name}{' '} ) : ( - - {name || '\u200C'}{' '} + + {name}{' '} );