diff --git a/frontend/pages/user.vue b/frontend/pages/user.vue index f165837..1229240 100644 --- a/frontend/pages/user.vue +++ b/frontend/pages/user.vue @@ -99,6 +99,8 @@ watch(extendedUserInformation, () => { } }) +const toast = useToast() + const department = ref('') const funfact = ref('') const userInterests = ref({}) @@ -136,6 +138,8 @@ const saveChanges = async () => { team: department.value, days: selectedDays.value }); + + toast.add({title: 'Informations Saved!', icon: 'i-heroicons-check-circle'}) navigateTo('/') };