Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin committed Dec 16, 2024
1 parent 5a418ca commit bde66c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react'
import styled from 'styled-components'

import styled from 'styled-components/macro'

interface BadgeProps {
checked: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import { Order, OrderStatus } from 'api/operator'
import { getLimitPrice } from 'utils/getLimitPrice'

import { OrderSurplusDisplayStyledByRow } from './OrderSurplusTooltipStyledByRow'
import { ToggleFilter } from './ToggleFilter'

import { SimpleTable, SimpleTableProps } from '../../common/SimpleTable'
import { StatusLabel } from '../StatusLabel'
import { ToggleFilter } from './ToggleFilter'
import { UnsignedOrderWarning } from '../UnsignedOrderWarning'

const EXPIRED_CANCELED_STATES: OrderStatus[] = ['cancelled', 'cancelling', 'expired']
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { BannerOrientation, InlineBanner } from '@cowprotocol/ui'
import styled from 'styled-components'

import styled from 'styled-components/macro'

const StyledInlineBanner = styled(InlineBanner)`
--cow-color-danger-text: ${({ theme }): string => theme.alert2};
Expand Down

0 comments on commit bde66c5

Please sign in to comment.