From 00ad2b88d53ad3246dda8004040c6584f3ee6684 Mon Sep 17 00:00:00 2001
From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com>
Date: Mon, 15 Jan 2024 09:25:09 +0100
Subject: [PATCH] Change to AT address
---
plugins/plugins/core/wallet/wallet-app.src.js | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/plugins/plugins/core/wallet/wallet-app.src.js b/plugins/plugins/core/wallet/wallet-app.src.js
index 152cbb98..1926ca95 100644
--- a/plugins/plugins/core/wallet/wallet-app.src.js
+++ b/plugins/plugins/core/wallet/wallet-app.src.js
@@ -5089,7 +5089,7 @@ class MultiWallet extends LitElement {
const unconfirmed = data.item.confirmations == 0
if (confirmed) {
render(html`check`, root)
- } else if (unconfirmed) {
+ } else if (unconfirmed) {
render(html`schedule`, root)
} else {
render(html`schedule`, root)
@@ -5108,7 +5108,9 @@ class MultiWallet extends LitElement {
{
+ render(html`${data.item.type === 'AT' ? html`${data.item.atAddress}` : html`${data.item.creatorAddress}`}`, root)
+ }}
>