From f4dbf9509554a8aafc7452790ef4c1fc7e77ba42 Mon Sep 17 00:00:00 2001 From: wbuezas Date: Wed, 26 Feb 2025 14:04:54 -0300 Subject: [PATCH] Change imageUrl asignment --- src/stores/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/stores/app.js b/src/stores/app.js index ddc787c5..45077306 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -63,8 +63,7 @@ export const useAppStore = defineStore('hedera', { if (!data) return; - const [config] = data; - this.imageUrl = config?.url; + this.imageUrl = data[0]?.url; } catch (err) { console.error(err); }