From 367bb4755c7535363cd7a291403c8f5c7a52e89c Mon Sep 17 00:00:00 2001 From: tomasklim Date: Fri, 24 Jan 2025 18:13:45 +0100 Subject: [PATCH] chore(suite): remove unused unstake fee component --- .../UnstakeModal/UnstakeEthForm/Fees.tsx | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 packages/suite/src/components/suite/modals/ReduxModal/UserContextModal/UnstakeModal/UnstakeEthForm/Fees.tsx diff --git a/packages/suite/src/components/suite/modals/ReduxModal/UserContextModal/UnstakeModal/UnstakeEthForm/Fees.tsx b/packages/suite/src/components/suite/modals/ReduxModal/UserContextModal/UnstakeModal/UnstakeEthForm/Fees.tsx deleted file mode 100644 index a71e6c5c735..00000000000 --- a/packages/suite/src/components/suite/modals/ReduxModal/UserContextModal/UnstakeModal/UnstakeEthForm/Fees.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import styled from 'styled-components'; - -import { Fees } from 'src/components/wallet/Fees/Fees'; -import { useUnstakeEthFormContext } from 'src/hooks/wallet/useUnstakeEthForm'; -import { Translation } from 'src/components/suite'; - -const StyledCard = styled.div` - display: flex; - flex-direction: column; - justify-items: space-between; - margin: 25px 0; -`; - -const UnstakeFees = () => { - const { - formState: { errors }, - register, - control, - setValue, - getValues, - account, - changeFeeLevel, - feeInfo, - composedLevels, - } = useUnstakeEthFormContext(); - - return ( - - } - /> - - ); -}; - -export default UnstakeFees;