Fix(toasts): increase default timeout

This commit is contained in:
Berkeley Martinez
2016-09-08 22:24:34 -07:00
parent 5426944175
commit 38a30a69c8

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