diff --git a/src/components/NodesTable/components/NodesTableBody/Rows/AuctionListRow.tsx b/src/components/NodesTable/components/NodesTableBody/Rows/AuctionListRow.tsx
index a06d02531..0da0111f1 100644
--- a/src/components/NodesTable/components/NodesTableBody/Rows/AuctionListRow.tsx
+++ b/src/components/NodesTable/components/NodesTableBody/Rows/AuctionListRow.tsx
@@ -2,7 +2,6 @@ import { useGetSort } from 'hooks';
import { NodeType, SortOrderEnum, WithClassnameType } from 'types';
import { AuctionListBaseRow } from './AuctionListBaseRow';
-import { AuctionListExpandRow } from './AuctionListExpandRow';
import { AuctionListTresholdRow } from './AuctionListTresholdRow';
export interface AuctionListRowUIType extends WithClassnameType {
@@ -13,53 +12,17 @@ export interface AuctionListRowUIType extends WithClassnameType {
export const AuctionListRow = ({
nodeData,
- showTresholdRow,
- expandRowDetails
+ showTresholdRow
}: AuctionListRowUIType) => {
const { sort, order } = useGetSort();
const isSortDesc = sort === 'auctionPosition' && order === SortOrderEnum.desc;
- const hasExpand =
- expandRowDetails?.qualifiedExpandPosition ||
- expandRowDetails?.dangerZoneExpandPosition ||
- expandRowDetails?.notQualifiedExpandPosition;
-
return (
<>
{isSortDesc && showTresholdRow && (
)}
- {expandRowDetails?.qualifiedExpandPosition && (
-
- )}
- {expandRowDetails?.dangerZoneExpandPosition && (
-
- )}
- {expandRowDetails?.notQualifiedExpandPosition && (
-
- )}
- {!hasExpand && }
+
{!isSortDesc && showTresholdRow && (
)}