ソースを参照

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 });
})


読み込み中…
キャンセル
保存