Skip to content

Commit

Permalink
Merge pull request #138 from BuidlerDAO/nig-789
Browse files Browse the repository at this point in the history
fix: nig-789
  • Loading branch information
huangbinjie authored May 10, 2024
2 parents 3f53af8 + 6874b43 commit d562271
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/welcome/Wallet/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,11 @@ const ProfileModal = () => {

const holding = holderingList?.map((item) => ({
holder: (
<div className="flex items-center space-x-1">
<img
onClick={() => openProfile(item.holderUser)}
src={item.subjectUser?.avatar}
alt=""
className="w-5 cursor-pointer rounded-full"
/>
<div
className="flex cursor-pointer items-center space-x-1"
onClick={() => openTwitterProfile(item.subjectUser?.twitterUsername)}
>
<img src={item.subjectUser?.avatar} alt="" className="w-5 cursor-pointer rounded-full" />
<span className="text-xs text-[#0F1419]">{item.subjectUser?.username}</span>
</div>
),
Expand Down

0 comments on commit d562271

Please sign in to comment.