From 4739963eb63125085f62c50903d11ae006406433 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Fri, 24 Apr 2020 17:05:15 -0300 Subject: [PATCH] Raise time to lock to 30 seconds --- app/constants/localAuthentication.js | 2 +- app/containers/Passcode/Locked.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app/constants/localAuthentication.js b/app/constants/localAuthentication.js index ed25c917d..7b1c1c118 100644 --- a/app/constants/localAuthentication.js +++ b/app/constants/localAuthentication.js @@ -6,4 +6,4 @@ export const LOCAL_AUTHENTICATE_EMITTER = 'LOCAL_AUTHENTICATE'; export const PASSCODE_LENGTH = 6; export const MAX_ATTEMPTS = 6; -export const TIME_TO_LOCK = 10000; +export const TIME_TO_LOCK = 30000; diff --git a/app/containers/Passcode/Locked.js b/app/containers/Passcode/Locked.js index 514e135f9..d29ff04ab 100644 --- a/app/containers/Passcode/Locked.js +++ b/app/containers/Passcode/Locked.js @@ -8,7 +8,7 @@ import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; import { resetAttempts } from '../../utils/localAuthentication'; import { TYPE } from './constants'; -import { getLockedUntil } from './utils'; +import { getLockedUntil, getDiff } from './utils'; import I18n from '../../i18n'; const styles = StyleSheet.create({ @@ -32,8 +32,6 @@ const styles = StyleSheet.create({ } }); -const getDiff = t => new Date(t) - new Date(); - const Timer = ({ time, theme, setStatus }) => { const calcTimeLeft = () => { const diff = getDiff(time);