+
diff --git a/src/layout/AppTopbar.vue b/src/layout/AppTopbar.vue
index bb7389c..29f5609 100644
--- a/src/layout/AppTopbar.vue
+++ b/src/layout/AppTopbar.vue
@@ -4,29 +4,21 @@ import { useAuth } from '@websanova/vue-auth/src/v3.js';
import { useRouter } from 'vue-router';
+import { ScenarioStore } from '../stores/ScenarioStore.js';
+import { UserPrefStore } from '../stores/UserPrefStore.js';
+
import AppConfigurator from './AppConfigurator.vue';
import AppProfileMenu from './AppProfileMenu.vue';
+
const auth = useAuth();
const router = useRouter();
const props = defineProps(['page']);
-
+const userPrefStore = UserPrefStore();
+const scenario_store = ScenarioStore();
const { onMenuToggle, toggleDarkMode, isDarkTheme } = useLayout();
-/*const fetchData = async () => {
- try {
- const response = await axios.get('/userApplications');
- items.value = response.data;
- } catch (error) {
- console.error('Errore durante il recupero dei dati:', error);
- }
-};
-
-// Richiama il metodo all'inizializzazione del componente
-onMounted(() => {
- fetchData();
-});*/
@@ -83,7 +75,14 @@ onMounted(() => {