Skip to content

Commit

Permalink
fix: use ticker value from contract
Browse files Browse the repository at this point in the history
  • Loading branch information
kunstmusik committed Dec 10, 2024
1 parent c728384 commit efb7eac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/Dashboard/IOTokenDistributionPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ const IOTokenDistributionPanel = () => {
<div className="text-gradient px-5 pt-5 text-sm">
{data && activeIndex !== undefined
? data[activeIndex].name
: 'IO Token'}
: ticker
? `${ticker} Token`
: ''}
</div>
<div className="relative w-[352px] grow">
{data ? (
Expand Down

0 comments on commit efb7eac

Please sign in to comment.