diff --git a/screen/UnlockWith.tsx b/screen/UnlockWith.tsx
index d105b687d..6378604c0 100644
--- a/screen/UnlockWith.tsx
+++ b/screen/UnlockWith.tsx
@@ -106,6 +106,7 @@ const UnlockWith: React.FC = () => {
dispatch({ type: SET_AUTH, payload: { type: AuthType.Biometrics, detail: biometricType } });
unlockWithBiometrics();
} else if (biometricsUseEnabled && biometricType === undefined) {
+ triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
dispatch({ type: SET_AUTH, payload: { type: AuthType.BiometricsUnavailable, detail: undefined } });
} else {
dispatch({ type: SET_AUTH, payload: { type: AuthType.None, detail: undefined } });
@@ -164,7 +165,7 @@ const styles = StyleSheet.create({
biometricRow: {
justifyContent: 'center',
flexDirection: 'row',
- minWidth: 128,
+ width: 300,
height: 60,
alignSelf: 'center',
marginBottom: 20,
diff --git a/screen/settings/encryptStorage.js b/screen/settings/encryptStorage.js
index dc08d9530..f3969caa8 100644
--- a/screen/settings/encryptStorage.js
+++ b/screen/settings/encryptStorage.js
@@ -136,7 +136,6 @@ const EncryptStorage = () => {
return isCapable ? (
<>
-
{loc.formatString(loc.settings.biometrics_fail, { type: biometrics.biometricsType })}
>
) : null;