소스 검색

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


불러오는 중...
취소
저장