aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/walletEntryPoint.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-03-21 12:49:41 -0300
committerSebastian <sebasjm@gmail.com>2022-03-21 12:49:41 -0300
commit32cd54e11d80bde0274b3c0238f8f5bd00ff83cb (patch)
treefb38117e25476aff1848ed74e98cf653ba7e94e2 /packages/taler-wallet-webextension/src/walletEntryPoint.tsx
parentf7cabbf479c9703e4565ae610a68e652ba9e95b5 (diff)
downloadwallet-core-32cd54e11d80bde0274b3c0238f8f5bd00ff83cb.tar.xz
fix: handle new optional parameter for settings_exchange_add page
Diffstat (limited to 'packages/taler-wallet-webextension/src/walletEntryPoint.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/walletEntryPoint.tsx36
1 files changed, 18 insertions, 18 deletions
diff --git a/packages/taler-wallet-webextension/src/walletEntryPoint.tsx b/packages/taler-wallet-webextension/src/walletEntryPoint.tsx
index 9a1d8699a..2f53917e4 100644
--- a/packages/taler-wallet-webextension/src/walletEntryPoint.tsx
+++ b/packages/taler-wallet-webextension/src/walletEntryPoint.tsx
@@ -113,23 +113,23 @@ function Application(): VNode {
<Fragment>
<LogoHeader />
<WalletNavBar path={path} />
+ <div
+ style={{
+ backgroundColor: "lightcyan",
+ display: "flex",
+ justifyContent: "center",
+ }}
+ >
+ <PendingTransactions
+ goToTransaction={(txId: string) =>
+ route(Pages.balance_transaction.replace(":tid", txId))
+ }
+ />
+ </div>
</Fragment>
);
}}
</Match>
- <div
- style={{
- backgroundColor: "lightcyan",
- display: "flex",
- justifyContent: "center",
- }}
- >
- <PendingTransactions
- goToTransaction={(txId: string) =>
- route(Pages.balance_transaction.replace(":tid", txId))
- }
- />
- </div>
<WalletBox>
{globalNotification && (
<SuccessBox onClick={clearNotification}>
@@ -166,7 +166,7 @@ function Application(): VNode {
component={TransactionPage}
goToWalletHistory={(currency?: string) => {
route(
- Pages.balance_history.replace(":currency", currency || ""),
+ Pages.balance_history.replace(":currency?", currency || ""),
);
}}
/>
@@ -183,10 +183,10 @@ function Application(): VNode {
path={Pages.balance_deposit}
component={DepositPage}
onCancel={(currency: string) => {
- route(Pages.balance_history.replace(":currency", currency));
+ route(Pages.balance_history.replace(":currency?", currency));
}}
onSuccess={(currency: string) => {
- route(Pages.balance_history.replace(":currency", currency));
+ route(Pages.balance_history.replace(":currency?", currency));
setGlobalNotification(
<i18n.Translate>
All done, your transaction is in progress
@@ -268,13 +268,13 @@ function Application(): VNode {
<Route
path={Pages.balance}
component={Redirect}
- to={Pages.balance_history.replace(":currency", "")}
+ to={Pages.balance_history.replace(":currency?", "")}
/>
<Route
default
component={Redirect}
- to={Pages.balance_history.replace(":currency", "")}
+ to={Pages.balance_history.replace(":currency?", "")}
/>
</Router>
</WalletBox>