From 27f1de6af302aad07596cd11854b882ce968d0fd Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Thu, 31 Dec 2020 21:33:22 -0500 Subject: [PATCH] Updated Toast timer to be 3500ms for dismissal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Updated: - Toast timer to be 3500ms for dismissal --- app/javascript/gabsocial/components/toast.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/gabsocial/components/toast.js b/app/javascript/gabsocial/components/toast.js index 71e4886c..35daffa9 100644 --- a/app/javascript/gabsocial/components/toast.js +++ b/app/javascript/gabsocial/components/toast.js @@ -16,7 +16,7 @@ class Toast extends React.PureComponent { componentDidMount() { this._timer = setTimeout(() => { this.handleOnDismiss() - }, 5000) + }, 3500) } componentWillUnmount() {