Fix(toasts): increase default timeout

pull/10520/head
Berkeley Martinez 2016-09-08 22:24:34 -07:00
parent 5426944175
commit 38a30a69c8
1 changed files with 1 additions and 1 deletions

View File

@ -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'
})
);