From 38a30a69c88321d6dc734641d8775764a9e77171 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Thu, 8 Sep 2016 22:24:34 -0700 Subject: [PATCH] Fix(toasts): increase default timeout --- common/app/toasts/redux/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/app/toasts/redux/actions.js b/common/app/toasts/redux/actions.js index ec13f62797f..667a4f7e269 100644 --- a/common/app/toasts/redux/actions.js +++ b/common/app/toasts/redux/actions.js @@ -9,7 +9,7 @@ export const makeToast = createAction( // assign current value of key to new toast // and then increment key value key: key++, - dismissAfter: timeout || 2000, + dismissAfter: timeout || 6000, position: rest.position === 'left' ? 'left' : 'right' }) );