diff --git a/taker-frontend/src/components/Trade.tsx b/taker-frontend/src/components/Trade.tsx index 256d4e0..d95b08b 100644 --- a/taker-frontend/src/components/Trade.tsx +++ b/taker-frontend/src/components/Trade.tsx @@ -146,9 +146,6 @@ const Trade = ( - - -
); } - -interface LiquidationProps { - value?: string; -} - -function Liquidation({ value }: LiquidationProps) { - return ( - - - Liquidation price: - {value || "0.0"} - - - You will lose your collateral if the price drops below this value - - - ); -}