Skip to content

Commit

Permalink
fix: Double "@" on profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
rdp-studio authored Mar 1, 2024
1 parent dadbb9e commit 3279f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/TxnProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const TxnProfile: FC<TxnProfileProps> = ({ profile }) => {
{profile.metadata?.displayName ?? formatAddress(profile.ownedBy.address)}
</h1>
<h3 className="text-sm font-medium opacity-60">
@{profile.handle?.suggestedFormatted.localName || profile.id}
{profile.handle?.suggestedFormatted.localName || profile.id}
</h3>
<p className="mt-3 text-sm font-medium opacity-60">{profile.metadata?.bio ?? ''}</p>
</div>
Expand Down

0 comments on commit 3279f2f

Please sign in to comment.