aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-24 15:16:11 -0300
committerSebastian <sebasjm@gmail.com>2021-08-24 15:16:33 -0300
commite22bdd52f7dc878738d1b1306a15ae0f573c30a2 (patch)
treefa436f991ea5bf88ff973007d300aea39a5efac6 /packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
parent0bc235c64b6936aa092a2df40e0c4909e4ac05d5 (diff)
downloadwallet-core-e22bdd52f7dc878738d1b1306a15ae0f573c30a2.tar.xz
transaction details new ui
Diffstat (limited to 'packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
index 0f7ea457d..535509cef 100644
--- a/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
+++ b/packages/taler-wallet-webextension/src/wallet/Transaction.stories.tsx
@@ -40,8 +40,8 @@ export default {
};
const commonTransaction = {
- amountRaw: 'USD:10',
- amountEffective: 'USD:9',
+ amountRaw: 'KUDOS:11',
+ amountEffective: 'KUDOS:9.2',
pending: false,
timestamp: {
t_ms: new Date().getTime()
@@ -62,7 +62,7 @@ const exampleData = {
} as TransactionWithdrawal,
payment: {
...commonTransaction,
- amountEffective: 'USD:11',
+ amountEffective: 'KUDOS:11',
type: TransactionType.Payment,
info: {
contractTermsHash: 'ASDZXCASD',
@@ -147,7 +147,7 @@ export const PaymentError = createExample(TestedComponent, {
export const PaymentWithoutFee = createExample(TestedComponent, {
transaction: {
...exampleData.payment,
- amountRaw: 'USD:11',
+ amountRaw: 'KUDOS:11',
}
});