Skip to content

Commit

Permalink
[DDW-1012] Remove unused property
Browse files Browse the repository at this point in the history
  • Loading branch information
renanvalentin committed Apr 6, 2022
1 parent cd698f9 commit 4797f4f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ type UseCreateColumnsArgs = {
onSelect?: (...args: Array<any>) => any;
containerClassName: string;
numberOfRankedStakePools: number;
selectedPoolId?: string;
onOpenExternalLink: (...args: Array<any>) => any;
intl: Intl;
};
Expand All @@ -99,7 +98,6 @@ export const useCreateColumns = ({
currentTheme,
onOpenExternalLink,
onSelect,
selectedPoolId,
containerClassName,
showWithSelectButton,
}: UseCreateColumnsArgs) =>
Expand Down Expand Up @@ -157,7 +155,6 @@ export const useCreateColumns = ({
currentTheme={currentTheme}
onOpenExternalLink={onOpenExternalLink}
onSelect={onSelect}
isSelected={selectedPoolId === stakePool.id}
stakePool={stakePool}
containerClassName={containerClassName}
numberOfRankedStakePools={numberOfRankedStakePools}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ function StakePoolsTableComponent({
numberOfRankedStakePools,
onOpenExternalLink,
onSelect,
selectedPoolId,
showWithSelectButton,
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export function PoolPopOver(props: {
containerClassName: string;
numberOfRankedStakePools: number;
isGridRewardsView?: boolean;
isSelected?: boolean;
}) {
// Track hover state manually to optimize performance by lazy init pop overs
const [isHovered, setIsHovered] = useState(false);
Expand Down

0 comments on commit 4797f4f

Please sign in to comment.