Skip to content

Commit

Permalink
feat(TS): type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip London committed Jan 24, 2020
1 parent 4c47a92 commit 88a5dd8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as AT from './actionTypes'
import * as Currencies from 'blockchain-wallet-v4/src/exchange/currencies'
import { RemoteData } from 'blockchain-wallet-v4/src/remote/types'
import { RemoteDataType } from 'data/types'
import { String } from 'index'

// Types
Expand Down Expand Up @@ -56,7 +56,7 @@ export type SourceFeeType =

// State
export interface ExchangeState {
limits: RemoteData<string, Currencies<LimitsType>>
limits: RemoteDataType<string, Currencies<LimitsType>>
max: null | LimitAmountType
min: null | LimitAmountType
showError: boolean
Expand Down

0 comments on commit 88a5dd8

Please sign in to comment.