Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ICA-167] App should require re-enabling of biometric identification when biometrics have been added on device #215

Merged
Merged
17 changes: 9 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ about: Create a report to help us improve
title: ''
labels: bug, triage
assignees: jeremi, kneckinator

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,13 +24,14 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Inji app version: [e.g 0.3.0]
- Mimoto version: [e.g 1.2.x]
- MOSIP Version: [e.g. 1.2.1]
- Mimoto server: [e.g. https://.....com]
- MOSIP server: [e.g. https://...mosip.com]

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Inji app version: [e.g 0.3.0]
- Mimoto version: [e.g 1.2.x]
- MOSIP Version: [e.g. 1.2.1]
- Mimoto server: [e.g. https://.....com]
- MOSIP server: [e.g. https://...mosip.com]

**Additional context**
Add any other context about the problem here.
3 changes: 2 additions & 1 deletion components/Passcode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const Passcode: React.FC<PasscodeProps> = (props) => {
<Column fill padding="32" backgroundColor={Colors.White}>
<Icon name="lock" color={Colors.Orange} size={60} />
<Column fill align="space-between" width="100%">
<Text align="center">Enter your passcode</Text>
<Text align="center">{props.message || 'Enter your passcode'}</Text>
<PasscodeVerify
onSuccess={props.onSuccess}
onError={props.onError}
Expand All @@ -40,6 +40,7 @@ export const Passcode: React.FC<PasscodeProps> = (props) => {
};

interface PasscodeProps {
message?: string;
error: string;
storedPasscode: string;
onSuccess: () => void;
Expand Down
Loading