diff --git a/src/stores/app.js b/src/stores/app.js index 45077306..d5183dc8 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -32,7 +32,10 @@ export const useAppStore = defineStore('hedera', { }), actions: { async getMenuLinks() { - const sections = await jApi.query('SELECT * FROM myMenu'); + const { data: sections } = await api.get('MyMenus'); + + if (!sections) return; + const sectionMap = new Map(); for (const section of sections) { sectionMap.set(section.id, section);