diff options
| author | Sebastian <sebasjm@gmail.com> | 2021-11-19 14:51:27 -0300 |
|---|---|---|
| committer | Sebastian <sebasjm@gmail.com> | 2021-11-19 14:51:35 -0300 |
| commit | a35604fd562a72e4e266bf6a4255d89d3c1374a1 (patch) | |
| tree | d0c4df01a89dc78c412be6da3aba3cec343937ff /packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx | |
| parent | 60cfb0e78f3afed92f315c1394da717329db9564 (diff) | |
some changes:
- simplify design to reuse more components (from wallet instead of popup)
- simplify hooks (useAsyncAsHook)
- updateNotification from backend now filter events by type
- new balance design proposed by Belen
- more information when the withdrawal is in process
- manual withdrawal implementation
- some bugs killed
Diffstat (limited to 'packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx')
| -rw-r--r-- | packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx b/packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx index 300e9cd57..e4955e376 100644 --- a/packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx +++ b/packages/taler-wallet-webextension/src/wallet/CreateManualWithdraw.stories.tsx @@ -34,6 +34,10 @@ const exchangeList = { "http://exchange.tal": "EUR", }; +export const WithoutAnyExchangeKnown = createExample(TestedComponent, { + exchangeList: {}, +}); + export const InitialState = createExample(TestedComponent, { exchangeList, }); |
