diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-29 18:27:50 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-29 18:27:50 +0200 |
commit | 94d111a94533c0c31231642e8ffe4fbd4ce30096 (patch) | |
tree | 79c9f8ec3754699f8a135630f1ab6ee9be8019e6 /src/webex/pages/payback.tsx | |
parent | b5c90d12219ca3a0df173ddf085d2353831a8ef6 (diff) |
lint for unused variables, fix query bug detected by this
Diffstat (limited to 'src/webex/pages/payback.tsx')
-rw-r--r-- | src/webex/pages/payback.tsx | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/webex/pages/payback.tsx b/src/webex/pages/payback.tsx index e10da7b05..4aadf5add 100644 --- a/src/webex/pages/payback.tsx +++ b/src/webex/pages/payback.tsx @@ -24,25 +24,14 @@ /** * Imports. */ -import { amountToPretty, getTalerStampDate } from "../../helpers"; +import { amountToPretty } from "../../helpers"; import { - AuditorRecord, - CoinRecord, - CurrencyRecord, - Denomination, - DenominationRecord, - ExchangeForCurrencyRecord, - ExchangeRecord, - PreCoinRecord, ReserveRecord, - WalletBalance, } from "../../types"; import { ImplicitStateComponent, StateHolder } from "../components"; import { - getCurrencies, getPaybackReserves, - updateCurrency, withdrawPaybackReserve, } from "../wxApi"; |