Skip to content

Commit

Permalink
Usel full token names without splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
saidam90 committed Aug 11, 2024
1 parent 289ba3a commit f35feaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/PriceChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ function CoinInfo({ token }: { token: TokenInfo }) {
<div className="flex items-center mb-3 pt-8">
<img src={iconUrl} alt={symbol} className="w-8 h-8 rounded-full" />
<p className="pl-2 text-base">
{name.split(" ")[0]} ({symbol})
{name} ({symbol})
</p>
</div>
<div className="flex flex-col">
Expand Down

0 comments on commit f35feaa

Please sign in to comment.