diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-06 22:26:04 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-06 22:26:04 +0800 |
commit | cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78 (patch) | |
tree | 1ab6a8d6b8588707286fc56a632dca9ceca7e7ac /packages/website/ts/components/ui | |
parent | af1d5fce6ea355b12bf5f63f51ea81ff596f7868 (diff) | |
download | dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.gz dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.bz2 dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.lz dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.xz dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.tar.zst dexon-sol-tools-cf8fdd3a701f21bfc3b2ec8397fa65948f5cdc78.zip |
Move spawnSwitchErr to @0xproject/utils
Diffstat (limited to 'packages/website/ts/components/ui')
-rw-r--r-- | packages/website/ts/components/ui/lifecycle_raised_button.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/components/ui/lifecycle_raised_button.tsx b/packages/website/ts/components/ui/lifecycle_raised_button.tsx index b06978f16..afb09a4bb 100644 --- a/packages/website/ts/components/ui/lifecycle_raised_button.tsx +++ b/packages/website/ts/components/ui/lifecycle_raised_button.tsx @@ -1,4 +1,5 @@ import { colors } from '@0xproject/react-shared'; +import { errorUtils } from '@0xproject/utils'; import * as _ from 'lodash'; import RaisedButton from 'material-ui/RaisedButton'; import * as React from 'react'; @@ -63,7 +64,7 @@ export class LifeCycleRaisedButton extends React.Component<LifeCycleRaisedButton label = this.props.labelComplete; break; default: - throw utils.spawnSwitchErr('ButtonState', this.state.buttonState); + throw errorUtils.spawnSwitchErr('ButtonState', this.state.buttonState); } return ( <RaisedButton |