Procházet zdrojové kódy

Hide touch id if not enrolled

Fixes #554
pull/557/head
Guillaume Vincent před 4 roky
rodič
revize
7eaa407685
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      mobile/src/settings/SettingsScreen.js

+ 4
- 1
mobile/src/settings/SettingsScreen.js Zobrazit soubor

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

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


Načítá se…
Zrušit
Uložit