aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-09-21 19:43:59 +0200
committerFlorian Dold <florian@dold.me>2023-09-21 19:43:59 +0200
commit6b63ecc49e4baafcd2833503418bb531025d8054 (patch)
tree4bdbbdecbd76e0703c955756c15de5688cce8a40 /packages/taler-wallet-webextension/src/components
parenta99156ed22d21c88cddbfa5fb5908d093b32fbf8 (diff)
downloadwallet-core-6b63ecc49e4baafcd2833503418bb531025d8054.tar.xz
-fix botched Balance->WalletBalance rename
Diffstat (limited to 'packages/taler-wallet-webextension/src/components')
-rw-r--r--packages/taler-wallet-webextension/src/components/BalanceTable.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-wallet-webextension/src/components/BalanceTable.tsx b/packages/taler-wallet-webextension/src/components/BalanceTable.tsx
index c2cef451b..d3733e6cc 100644
--- a/packages/taler-wallet-webextension/src/components/BalanceTable.tsx
+++ b/packages/taler-wallet-webextension/src/components/BalanceTable.tsx
@@ -14,15 +14,15 @@
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
-import { Amounts, Balance } from "@gnu-taler/taler-util";
-import { h, VNode } from "preact";
+import { Amounts, WalletBalance } from "@gnu-taler/taler-util";
+import { VNode, h } from "preact";
import { TableWithRoundRows as TableWithRoundedRows } from "./styled/index.js";
export function BalanceTable({
balances,
goToWalletHistory,
}: {
- balances: Balance[];
+ balances: WalletBalance[];
goToWalletHistory: (currency: string) => void;
}): VNode {
return (