Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
domechn committed Nov 8, 2023
1 parent c43191e commit 572531d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/asset-change.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const App = ({
console.log(index === 0 || index === _(data.timestamps).size() - 1);
const total = _(data.timestamps).size() - 1;

// Hide every 2nd tick label
// only show start and end date
return index === 0 || index === total - 1
? timestampToDate(data.timestamps[index])
: "";
Expand Down Expand Up @@ -88,7 +88,7 @@ const App = ({
}

return (
<div>
<div className='h-30'>
<Line options={options as any} data={lineData()} />
</div>
);
Expand Down
1 change: 0 additions & 1 deletion src/components/overview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const App = ({
{/* <hr className="nice-hr" /> */}
<LatestAssetsPercentage data={latestAssetsPercentageData} />
<Separator className="my-6" />
<Separator className="my-6" />
<CoinsAmountAndValueChange
currency={currency}
data={coinsAmountAndValueChangeData}
Expand Down

0 comments on commit 572531d

Please sign in to comment.