aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/wallet/wallet.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-07-12 07:50:00 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-07-12 07:50:00 +0800
commit0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031 (patch)
tree631a88686b5f2fa2f436daac18643c2a055e9311 /packages/website/ts/components/wallet/wallet.tsx
parent1ee78062d7731b35e47c0d4c4e30a68628f364a9 (diff)
downloaddexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.tar
dexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.tar.gz
dexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.tar.bz2
dexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.tar.lz
dexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.tar.xz
dexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.tar.zst
dexon-0x-contracts-0941e0a929f2fe3ef6d0cf1de5a1274f5f45f031.zip
Add no-floating-promises ignore comments
Diffstat (limited to 'packages/website/ts/components/wallet/wallet.tsx')
-rw-r--r--packages/website/ts/components/wallet/wallet.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/website/ts/components/wallet/wallet.tsx b/packages/website/ts/components/wallet/wallet.tsx
index 2fdcded38..8523b819a 100644
--- a/packages/website/ts/components/wallet/wallet.tsx
+++ b/packages/website/ts/components/wallet/wallet.tsx
@@ -490,6 +490,7 @@ export class Wallet extends React.Component<WalletProps, WalletState> {
private _openWrappedEtherActionRow(wrappedEtherDirection: Side): void {
const action =
wrappedEtherDirection === Side.Deposit ? 'Wallet - Wrap ETH Opened' : 'Wallet - Unwrap WETH Opened';
+ // tslint:disable-next-line:no-floating-promises
analytics.trackAsync(action);
this.setState({
wrappedEtherDirection,
@@ -498,6 +499,7 @@ export class Wallet extends React.Component<WalletProps, WalletState> {
private _closeWrappedEtherActionRow(wrappedEtherDirection: Side): void {
const action =
wrappedEtherDirection === Side.Deposit ? 'Wallet - Wrap ETH Closed' : 'Wallet - Unwrap WETH Closed';
+ // tslint:disable-next-line:no-floating-promises
analytics.trackAsync(action);
this.setState({
wrappedEtherDirection: undefined,