aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-24 03:56:42 +0800
committerFabio Berger <me@fabioberger.com>2017-11-24 03:56:42 +0800
commite7a4e031947411535911db125148daee5fd6672d (patch)
treec886aafd34b09cf718dcba82ab0d6f0e9cc4d35d /packages
parenta42e8ae873d075c9013ed71d261c1c4f33715a00 (diff)
downloaddexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.tar
dexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.tar.gz
dexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.tar.bz2
dexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.tar.lz
dexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.tar.xz
dexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.tar.zst
dexon-sol-tools-e7a4e031947411535911db125148daee5fd6672d.zip
Fix alignment
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/redux/dispatcher.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/website/ts/redux/dispatcher.ts b/packages/website/ts/redux/dispatcher.ts
index 6badf95bd..566ab8a01 100644
--- a/packages/website/ts/redux/dispatcher.ts
+++ b/packages/website/ts/redux/dispatcher.ts
@@ -107,25 +107,25 @@ export class Dispatcher {
public encounteredBlockchainError(err: BlockchainErrs) {
this.dispatch({
data: err,
- type: ActionTypes.BLOCKCHAIN_ERR_ENCOUNTERED,
+ type: ActionTypes.BLOCKCHAIN_ERR_ENCOUNTERED,
});
}
public updateBlockchainIsLoaded(isLoaded: boolean) {
this.dispatch({
data: isLoaded,
- type: ActionTypes.UPDATE_BLOCKCHAIN_IS_LOADED,
+ type: ActionTypes.UPDATE_BLOCKCHAIN_IS_LOADED,
});
}
public addTokenToTokenByAddress(token: Token) {
this.dispatch({
data: token,
- type: ActionTypes.ADD_TOKEN_TO_TOKEN_BY_ADDRESS,
+ type: ActionTypes.ADD_TOKEN_TO_TOKEN_BY_ADDRESS,
});
}
public removeTokenToTokenByAddress(token: Token) {
this.dispatch({
data: token,
- type: ActionTypes.REMOVE_TOKEN_TO_TOKEN_BY_ADDRESS,
+ type: ActionTypes.REMOVE_TOKEN_TO_TOKEN_BY_ADDRESS,
});
}
public clearTokenByAddress() {
@@ -136,13 +136,13 @@ export class Dispatcher {
public updateTokenByAddress(tokens: Token[]) {
this.dispatch({
data: tokens,
- type: ActionTypes.UPDATE_TOKEN_BY_ADDRESS,
+ type: ActionTypes.UPDATE_TOKEN_BY_ADDRESS,
});
}
public updateTokenStateByAddress(tokenStateByAddress: TokenStateByAddress) {
this.dispatch({
data: tokenStateByAddress,
- type: ActionTypes.UPDATE_TOKEN_STATE_BY_ADDRESS,
+ type: ActionTypes.UPDATE_TOKEN_STATE_BY_ADDRESS,
});
}
public removeFromTokenStateByAddress(tokenAddress: string) {
@@ -181,19 +181,19 @@ export class Dispatcher {
public updateSignatureData(signatureData: SignatureData) {
this.dispatch({
data: signatureData,
- type: ActionTypes.UPDATE_ORDER_SIGNATURE_DATA,
+ type: ActionTypes.UPDATE_ORDER_SIGNATURE_DATA,
});
}
public updateUserEtherBalance(balance: BigNumber) {
this.dispatch({
data: balance,
- type: ActionTypes.UPDATE_USER_ETHER_BALANCE,
+ type: ActionTypes.UPDATE_USER_ETHER_BALANCE,
});
}
public updateNetworkId(networkId: number) {
this.dispatch({
data: networkId,
- type: ActionTypes.UPDATE_NETWORK_ID,
+ type: ActionTypes.UPDATE_NETWORK_ID,
});
}
public updateOrderFillAmount(amount: BigNumber) {