Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
domechn committed Nov 19, 2023
1 parent 0d89c2b commit ba3bca3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/latest-assets-percentage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ const App = ({
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium font-bold">
{size.width}
Percentage of Assets
</CardTitle>
</CardHeader>
Expand All @@ -144,7 +143,7 @@ const App = ({
<Table>
<TableBody>
{/* todo: paginate */}
{data.map((d) => (
{data.slice(0, 8).map((d) => (
<TableRow key={d.coin}>
<TableCell>
<div className="flex flex-row items-center">
Expand Down

0 comments on commit ba3bca3

Please sign in to comment.