This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
lesspass
mirror of
https://github.com/lesspass/lesspass.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
67
Wiki
Activity
Browse Source
Hide touch id if not enrolled
Fixes
#554
pull/557/head
Guillaume Vincent
4 years ago
parent
b06cfa3c65
commit
7eaa407685
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
mobile/src/settings/SettingsScreen.js
+ 4
- 1
mobile/src/settings/SettingsScreen.js
View File
@@ -19,7 +19,10 @@ export class SettingsScreen extends Component {
}
componentDidMount() {
TouchID.isSupported()
TouchID
.isSupported({
passcodeFallback: false
})
.then(() => {
this.setState({ fingerprintIsSupported: true });
})
Write
Preview
Loading…
Cancel
Save