diff --git a/packages/app/src/sections/futures/MobileTrade/UserTabs/ConditionalOrdersTab.tsx b/packages/app/src/sections/futures/MobileTrade/UserTabs/ConditionalOrdersTab.tsx
index f12970b86..9f635d7f0 100644
--- a/packages/app/src/sections/futures/MobileTrade/UserTabs/ConditionalOrdersTab.tsx
+++ b/packages/app/src/sections/futures/MobileTrade/UserTabs/ConditionalOrdersTab.tsx
@@ -12,7 +12,6 @@ import { TableNoResults } from 'components/Table'
import { Body } from 'components/Text'
import { NO_VALUE } from 'constants/placeholder'
import PositionType from 'sections/futures/PositionType'
-import ConditionalOrdersWarning from 'sections/futures/UserInfo/ConditionalOrdersWarning'
import { selectMarketAsset } from 'state/futures/common/selectors'
import { cancelConditionalOrder } from 'state/futures/smartMargin/actions'
import {
@@ -53,7 +52,6 @@ const ConditionalOrdersTab: React.FC = () => {
return (
-
{rows.length === 0 ? (
You have no open orders
diff --git a/packages/app/src/sections/futures/UserInfo/ConditionalOrdersTable.tsx b/packages/app/src/sections/futures/UserInfo/ConditionalOrdersTable.tsx
index ca30a7581..b467c13e7 100644
--- a/packages/app/src/sections/futures/UserInfo/ConditionalOrdersTable.tsx
+++ b/packages/app/src/sections/futures/UserInfo/ConditionalOrdersTable.tsx
@@ -24,7 +24,6 @@ import { useAppDispatch, useAppSelector } from 'state/hooks'
import PositionType from '../PositionType'
-import ConditionalOrdersWarning from './ConditionalOrdersWarning'
import TableMarketDetails from './TableMarketDetails'
export default function ConditionalOrdersTable() {
@@ -57,7 +56,6 @@ export default function ConditionalOrdersTable() {
return (
-
- Conditional orders are executed based on the onchain Pyth or Chainlink price. See the{' '}
-
- blog post
- {' '}
- for more details.
-
- )
-}
-
-const OrdersWarning = styled.div<{ mobile?: boolean }>`
- padding: 10px;
- color: ${(props) => props.theme.colors.selectedTheme.newTheme.text.warning};
- border-top: ${(props) =>
- props.mobile ? 'none' : props.theme.colors.selectedTheme.newTheme.border.style};
- border-bottom: ${(props) =>
- props.mobile ? props.theme.colors.selectedTheme.newTheme.border.style : 'none'};
- text-align: center;
-`