From 0009e7fec54d5d35b44fb860a1fd237bff3c11b2 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 11 May 2020 11:20:14 -0300 Subject: [PATCH] [FIX] Default biometry enabled (#2095) Co-authored-by: Diego Mello --- app/views/ScreenLockConfigView.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/ScreenLockConfigView.js b/app/views/ScreenLockConfigView.js index 14b495db2..a0a9c22e2 100644 --- a/app/views/ScreenLockConfigView.js +++ b/app/views/ScreenLockConfigView.js @@ -28,7 +28,7 @@ const styles = StyleSheet.create({ } }); -const DEFAULT_BIOMETRY = true; +const DEFAULT_BIOMETRY = false; class ScreenLockConfigView extends React.Component { static navigationOptions = ({ screenProps }) => ({ @@ -48,7 +48,7 @@ class ScreenLockConfigView extends React.Component { this.state = { autoLock: false, autoLockTime: null, - biometry: true, + biometry: DEFAULT_BIOMETRY, biometryLabel: null }; this.init();