Skip to content

Commit

Permalink
chore(app): remove cond order warning (#1024)
Browse files Browse the repository at this point in the history
  • Loading branch information
platschi authored Oct 9, 2023
1 parent 4b526d6 commit 2ef9398
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -53,7 +52,6 @@ const ConditionalOrdersTab: React.FC = () => {

return (
<div>
<ConditionalOrdersWarning mobile />
<Spacer height={15} />
{rows.length === 0 ? (
<TableNoResults>You have no open orders</TableNoResults>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -57,7 +56,6 @@ export default function ConditionalOrdersTable() {

return (
<Container>
<ConditionalOrdersWarning />
<Table
data={rows}
highlightRowsOnHover
Expand Down

This file was deleted.

0 comments on commit 2ef9398

Please sign in to comment.