Skip to content

Commit b851079

Browse files
fix(portfolio): remove sort options
Token Price and Quantity
1 parent b764b91 commit b851079

File tree

1 file changed

+2
-5
lines changed
  • apps/next/src/pages/Portfolio/components/PortfolioHome/components/PortolioDetails/components

1 file changed

+2
-5
lines changed

apps/next/src/pages/Portfolio/components/PortfolioHome/components/PortolioDetails/components/SortMenu.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import { PopoverItem } from '@avalabs/k2-alpine';
1+
import { DropdownMenu } from '@/components/DropdownMenu';
2+
import { Box, PopoverItem } from '@avalabs/k2-alpine';
23
import { FC } from 'react';
34
import { useTranslation } from 'react-i18next';
45
import { AssetSortOption } from '../utils/assetSorting';
5-
import { DropdownMenu } from '@/components/DropdownMenu';
6-
import { Box } from '@avalabs/k2-alpine';
76

87
export type SortMenuProps = {
98
id: string;
@@ -19,8 +18,6 @@ export const SortMenu: FC<SortMenuProps> = ({ id, sort, onSortChange }) => {
1918
{ label: t('Balance'), value: 'balance' },
2019
{ label: t('Name A to Z'), value: 'name-asc' },
2120
{ label: t('Name Z to A'), value: 'name-desc' },
22-
{ label: t('Quantity'), value: 'balance-quantity' },
23-
{ label: t('Token Price'), value: 'token-price' },
2421
];
2522

2623
return (

0 commit comments

Comments
 (0)