Skip to content

Commit

Permalink
chore: fix page and event name
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Feb 5, 2025
1 parent 3cd08b4 commit f3cd232
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/app/(core)/portfolio/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Metadata } from 'next';
import { headers } from 'next/headers';

export const metadata: Metadata = {
title: 'Markets',
title: 'Portfolio',
};

export const revalidate = 300;
Expand Down
4 changes: 3 additions & 1 deletion apps/frontend/src/components/PortfolioView/History.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ export const History = () => {
</div>
</TableCell>
<TableCell className="text-lavender font-semibold text-md">
{tx.eventType}
{tx.eventType === 'Withdrawal'
? 'Withdraw'
: tx.eventType}
</TableCell>
<TableCell className="text-moon">
<AssetName
Expand Down

0 comments on commit f3cd232

Please sign in to comment.