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); }