From 42264fb2437c8707019625e62753afa0f4ec2fc2 Mon Sep 17 00:00:00 2001 From: Matt Gabrenya Date: Fri, 1 Sep 2023 12:29:06 -0700 Subject: [PATCH] fix(ui): increase toast display time to 3s --- ui/src/stores/toasts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/stores/toasts.ts b/ui/src/stores/toasts.ts index 3cc6fb54..e398c3a2 100644 --- a/ui/src/stores/toasts.ts +++ b/ui/src/stores/toasts.ts @@ -3,7 +3,7 @@ import { uniqueId } from "lodash"; import { defineStore } from "pinia"; import { ref } from "vue"; -const DEFAULT_TIMEOUT = 2000; // Time to display toasts by default (ms) +const DEFAULT_TIMEOUT = 3000; // Time to display toasts by default (ms) export const useToasts = defineStore("toasts", () => { const messages = ref([]);