Переглянути джерело

Hide touch id if not enrolled

Fixes #554
pull/557/head
Guillaume Vincent 4 роки тому
джерело
коміт
7eaa407685
1 змінених файлів з 4 додано та 1 видалено
  1. +4
    -1
      mobile/src/settings/SettingsScreen.js

+ 4
- 1
mobile/src/settings/SettingsScreen.js Переглянути файл

@@ -19,7 +19,10 @@ export class SettingsScreen extends Component {
}

componentDidMount() {
TouchID.isSupported()
TouchID
.isSupported({
passcodeFallback: false
})
.then(() => {
this.setState({ fingerprintIsSupported: true });
})


Завантаження…
Відмінити
Зберегти