implemented wallet create modal

This commit is contained in:
Fran Jurmanović
2021-06-03 19:18:15 +02:00
parent f3acb4e15a
commit 4578114cfe
4 changed files with 98 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ class AppMenuElement extends BaseComponentElement {
const renderWallets = (wallets: Array<any>) => {
if (isAuth && totalWallets > 0) {
return html`${wallets.map((wallet) =>
regularMenu(`wallet/${wallet.id}`, wallet.name)
regularMenu(`/wallet/${wallet.id}`, wallet.name)
)}`;
}
return html``;