This commit is contained in:
2025-06-27 16:02:00 +02:00
parent 96dbc38c3a
commit 012058b998
21 changed files with 1299 additions and 433 deletions

View File

@ -56,7 +56,6 @@ export const useMenuStore = defineStore("menuStore", () => {
const currencies = ref([] as Currency[]);
const languages = ref([] as Language[]);
const getLocales = async () => {
const { data: countriesList } = await useMyFetch<GenericResponse<Country[]>>(`/api/public/country/list`);
countries.value = countriesList;
@ -96,7 +95,6 @@ export const useMenuStore = defineStore("menuStore", () => {
console.warn("Root menu item not found");
menu.value = [];
}
} catch (error) {
console.log(error);
}