diff --git a/src/app/components/error/Toast.vue b/src/app/components/error/Toast.vue index 6eff1611..efde0da4 100644 --- a/src/app/components/error/Toast.vue +++ b/src/app/components/error/Toast.vue @@ -7,7 +7,7 @@ const props = defineProps<{ const open = ref(true); -const autoCloseToast = props.duration ? Number(props.duration) : 5000; // 5 seconds +const autoCloseToast = props.duration ? Number(props.duration) : 12000; // 12 seconds onMounted(() => { setTimeout(() => { diff --git a/src/app/components/panel/Panel.vue b/src/app/components/panel/Panel.vue index f9b7d433..3777a9e0 100644 --- a/src/app/components/panel/Panel.vue +++ b/src/app/components/panel/Panel.vue @@ -1,7 +1,7 @@