From 3fe61ef36becc488ab91dc16922671bb2e6e0d01 Mon Sep 17 00:00:00 2001 From: Zamitto <167933696+zamitto@users.noreply.github.com> Date: Fri, 2 May 2025 11:40:08 -0300 Subject: [PATCH] feat: increase default toast duration --- src/renderer/src/features/toast-slice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/features/toast-slice.ts b/src/renderer/src/features/toast-slice.ts index 370430c1..789a2b00 100644 --- a/src/renderer/src/features/toast-slice.ts +++ b/src/renderer/src/features/toast-slice.ts @@ -26,7 +26,7 @@ export const toastSlice = createSlice({ state.title = action.payload.title; state.message = action.payload.message; state.type = action.payload.type; - state.duration = action.payload.duration ?? 2000; + state.duration = action.payload.duration ?? 3000; state.visible = true; }, closeToast: (state) => {