From e81a35e69f8de7b30c5000b90b82064578b1dc0d Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 4 Oct 2024 08:51:47 +0200 Subject: [PATCH] update card failed because of wrong handleErr passing to addartwork fixed --- src/views/CardCreatorPage.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/CardCreatorPage.vue b/src/views/CardCreatorPage.vue index 457c78d7..85f8dc5a 100644 --- a/src/views/CardCreatorPage.vue +++ b/src/views/CardCreatorPage.vue @@ -1485,6 +1485,7 @@ export default { this.model.image, this.model.fullArt, this.resetCard, + () => {}, (err) => { this.notifyFail("Update Artwork failed", err); console.error(err); @@ -1732,6 +1733,7 @@ export default { newCard.image, newCard.fullArt, this.successScreen, + () => {}, handleErr, ); } else if (!this.address) {