Updated Toast timer to be 3500ms for dismissal

• Updated:
- Toast timer to be 3500ms for dismissal
This commit is contained in:
mgabdev 2020-12-31 21:33:22 -05:00
parent 35f98bbfaa
commit 27f1de6af3
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Toast extends React.PureComponent {
componentDidMount() {
this._timer = setTimeout(() => {
this.handleOnDismiss()
}, 5000)
}, 3500)
}
componentWillUnmount() {