From 2f9cf1a9a272471787d4b4b6c7c820c719a5a92a Mon Sep 17 00:00:00 2001 From: Ashutosh Kumar <55241171+ashutoshbitcanny@users.noreply.github.com> Date: Thu, 6 Jan 2022 08:09:33 +0530 Subject: [PATCH] Update index.jsx It's being active for 3 different time if gap is 5 minutes. --- src/components/ClassicTheme/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ClassicTheme/index.jsx b/src/components/ClassicTheme/index.jsx index fd6f035..2a19895 100644 --- a/src/components/ClassicTheme/index.jsx +++ b/src/components/ClassicTheme/index.jsx @@ -74,7 +74,7 @@ class ClassicTheme extends React.PureComponent { if (meridiem && meridiem !== rawMeridiem) { return false; } - if (Math.abs(parseInt(minute, 10) - parseInt(currentMinute, 10)) < 15) { + if (Math.abs(parseInt(minute, 10) - parseInt(currentMinute, 10)) < 1) { return true; } return false;